aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/thread.cc
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-04-21 17:05:16 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-04-21 17:05:16 -0700
commit7fb56f9dc5d8e66f717f5e48ecbfbc11c8190182 (patch)
treea67fa3cf814a07267f7664f72a752c68fe435239 /lib/thread.cc
parent38c595738f229eda659853df34dee05cf618556c (diff)
thread: Removed unsed sort argument from _thread_add_matched_message
The reworked solution for naming a thread based on the subject of oldest/newest matching message no longer needs this argument.
Diffstat (limited to 'lib/thread.cc')
-rw-r--r--lib/thread.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/thread.cc b/lib/thread.cc
index 1b6feab2..e514bf82 100644
--- a/lib/thread.cc
+++ b/lib/thread.cc
@@ -123,8 +123,7 @@ _thread_add_message (notmuch_thread_t *thread,
static void
_thread_add_matched_message (notmuch_thread_t *thread,
- notmuch_message_t *message,
- notmuch_sort_t sort)
+ notmuch_message_t *message)
{
time_t date;
notmuch_message_t *hashed_message;
@@ -310,7 +309,7 @@ _notmuch_thread_create (void *ctx,
_thread_add_message (thread, message);
if (! matched_is_subset_of_thread)
- _thread_add_matched_message (thread, message, sort);
+ _thread_add_matched_message (thread, message);
_notmuch_message_close (message);
}
@@ -339,7 +338,7 @@ _notmuch_thread_create (void *ctx,
notmuch_messages_move_to_next (messages))
{
message = notmuch_messages_get (messages);
- _thread_add_matched_message (thread, message, sort);
+ _thread_add_matched_message (thread, message);
_notmuch_message_close (message);
}