mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 12:28:09 +01:00
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.
This commit is contained in:
parent
38c595738f
commit
7fb56f9dc5
1 changed files with 3 additions and 4 deletions
|
@ -123,8 +123,7 @@ _thread_add_message (notmuch_thread_t *thread,
|
||||||
|
|
||||||
static void
|
static void
|
||||||
_thread_add_matched_message (notmuch_thread_t *thread,
|
_thread_add_matched_message (notmuch_thread_t *thread,
|
||||||
notmuch_message_t *message,
|
notmuch_message_t *message)
|
||||||
notmuch_sort_t sort)
|
|
||||||
{
|
{
|
||||||
time_t date;
|
time_t date;
|
||||||
notmuch_message_t *hashed_message;
|
notmuch_message_t *hashed_message;
|
||||||
|
@ -310,7 +309,7 @@ _notmuch_thread_create (void *ctx,
|
||||||
_thread_add_message (thread, message);
|
_thread_add_message (thread, message);
|
||||||
|
|
||||||
if (! matched_is_subset_of_thread)
|
if (! matched_is_subset_of_thread)
|
||||||
_thread_add_matched_message (thread, message, sort);
|
_thread_add_matched_message (thread, message);
|
||||||
|
|
||||||
_notmuch_message_close (message);
|
_notmuch_message_close (message);
|
||||||
}
|
}
|
||||||
|
@ -339,7 +338,7 @@ _notmuch_thread_create (void *ctx,
|
||||||
notmuch_messages_move_to_next (messages))
|
notmuch_messages_move_to_next (messages))
|
||||||
{
|
{
|
||||||
message = notmuch_messages_get (messages);
|
message = notmuch_messages_get (messages);
|
||||||
_thread_add_matched_message (thread, message, sort);
|
_thread_add_matched_message (thread, message);
|
||||||
_notmuch_message_close (message);
|
_notmuch_message_close (message);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue