aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/thread.cc
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-04-22 14:00:17 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-04-22 14:00:17 -0700
commit6a0cba4ae0f73676902cb076514d5fd99bad8909 (patch)
treecbf3559d45878feccc565cf90211bf41669b49b4 /lib/thread.cc
parent5106df9f6b3101eb1ea4250efefa3f0408acbfc6 (diff)
Revert "thread: Removed unsed sort argument from _thread_add_matched_message"
Diffstat (limited to 'lib/thread.cc')
-rw-r--r--lib/thread.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/thread.cc b/lib/thread.cc
index e514bf82..1b6feab2 100644
--- a/lib/thread.cc
+++ b/lib/thread.cc
@@ -123,7 +123,8 @@ _thread_add_message (notmuch_thread_t *thread,
static void
_thread_add_matched_message (notmuch_thread_t *thread,
- notmuch_message_t *message)
+ notmuch_message_t *message,
+ notmuch_sort_t sort)
{
time_t date;
notmuch_message_t *hashed_message;
@@ -309,7 +310,7 @@ _notmuch_thread_create (void *ctx,
_thread_add_message (thread, message);
if (! matched_is_subset_of_thread)
- _thread_add_matched_message (thread, message);
+ _thread_add_matched_message (thread, message, sort);
_notmuch_message_close (message);
}
@@ -338,7 +339,7 @@ _notmuch_thread_create (void *ctx,
notmuch_messages_move_to_next (messages))
{
message = notmuch_messages_get (messages);
- _thread_add_matched_message (thread, message);
+ _thread_add_matched_message (thread, message, sort);
_notmuch_message_close (message);
}