diff options
author | NotZed <NotZed@HelixCode.com> | 2000-05-02 05:51:03 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-05-02 05:51:03 +0800 |
commit | 5c3e0a6314fc2a7f58e9b1e80ac1dda0f5068db7 (patch) | |
tree | a673c4f8c2d4128a4e1a1ca46540e274188751a5 /mail/message-list.h | |
parent | 896c775a526e35d8c201c5ba4a27d6b87b25167c (diff) | |
download | gsoc2013-evolution-5c3e0a6314fc2a7f58e9b1e80ac1dda0f5068db7.tar.gz gsoc2013-evolution-5c3e0a6314fc2a7f58e9b1e80ac1dda0f5068db7.tar.zst gsoc2013-evolution-5c3e0a6314fc2a7f58e9b1e80ac1dda0f5068db7.zip |
A hackish little quick-search entry. (search_activate): Perform a
2000-05-01 NotZed <NotZed@HelixCode.com>
* folder-browser.c (folder_browser_gui_init): A hackish little
quick-search entry.
(search_activate): Perform a quick-search on the folder subject
only.
* message-list.c (get_message_info): If there is an active search,
then get the data from that ... use this instead of
_get_message_info().
(ml_row_count): If we have an active search, get the info from its
result.
(select_msg): Changed to use get_message_info, so searches work.
(ml_value_at): And same here.
* mail-display.c: Include missing errno.h.
svn path=/trunk/; revision=2724
Diffstat (limited to 'mail/message-list.h')
-rw-r--r-- | mail/message-list.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/message-list.h b/mail/message-list.h index d751b784a2..fc20302b25 100644 --- a/mail/message-list.h +++ b/mail/message-list.h @@ -59,6 +59,9 @@ struct _MessageList { CamelFolder *folder; + /* FIXME: This should use a better format ... */ + GList *matches; /* when a search has been performed ... */ + /* used by the idle-call to select a row */ int row_to_select; guint idle_id; |