]> git.notmuchmail.org Git - notmuch/commitdiff
Revert "thread: Removed unsed sort argument from _thread_add_matched_message"
authorCarl Worth <cworth@cworth.org>
Thu, 22 Apr 2010 21:00:17 +0000 (14:00 -0700)
committerCarl Worth <cworth@cworth.org>
Thu, 22 Apr 2010 21:00:17 +0000 (14:00 -0700)
This reverts commit 7fb56f9dc5d8e66f717f5e48ecbfbc11c8190182.

lib/thread.cc

index e514bf827ec58be95e2d5d0aa308268204cd230e..1b6feab21626430a0f2247314372fba70612a653 100644 (file)
@@ -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);
        }