Fix incorrect name of _notmuch_thread_get_subject.

Somehow this naming with an underscore crept in, (but only in the
private header, so notmuch.c was compiling with no prototype). Fix
to be the notmuch_thread_get_subject originally intended.
This commit is contained in:
Carl Worth 2009-10-26 20:11:58 -07:00
parent c12823648e
commit d07dd49aac
3 changed files with 2 additions and 5 deletions

View file

@ -160,9 +160,6 @@ _notmuch_thread_add_tag (notmuch_thread_t *thread, const char *tag);
void
_notmuch_thread_set_subject (notmuch_thread_t *thread, const char *subject);
const char *
_notmuch_thread_get_subject (notmuch_thread_t *thread);
/* message.cc */
notmuch_message_t *

View file

@ -653,7 +653,7 @@ search_command (int argc, char *argv[])
printf ("%s %s",
notmuch_thread_get_thread_id (thread),
_notmuch_thread_get_subject (thread));
notmuch_thread_get_subject (thread));
printf (" (");
for (tags = notmuch_thread_get_tags (thread);

View file

@ -96,7 +96,7 @@ _notmuch_thread_set_subject (notmuch_thread_t *thread, const char *subject)
}
const char *
_notmuch_thread_get_subject (notmuch_thread_t *thread)
notmuch_thread_get_subject (notmuch_thread_t *thread)
{
return thread->subject;
}