aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-05-23 01:32:00 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-05-23 01:32:00 +0800
commit6ae1dd504509573df5a310a73ba83825d311845b (patch)
tree91d4a4faa9f0a48ebe51b2b94e66fa8421f540dc /mail/message-list.h
parentbc885bb22ebc81170ee0c6a602a836d4763777c7 (diff)
downloadgsoc2013-evolution-6ae1dd504509573df5a310a73ba83825d311845b.tar
gsoc2013-evolution-6ae1dd504509573df5a310a73ba83825d311845b.tar.gz
gsoc2013-evolution-6ae1dd504509573df5a310a73ba83825d311845b.tar.bz2
gsoc2013-evolution-6ae1dd504509573df5a310a73ba83825d311845b.tar.lz
gsoc2013-evolution-6ae1dd504509573df5a310a73ba83825d311845b.tar.xz
gsoc2013-evolution-6ae1dd504509573df5a310a73ba83825d311845b.tar.zst
gsoc2013-evolution-6ae1dd504509573df5a310a73ba83825d311845b.zip
Instead of calling message_list_select_uid() here, instead connect to the
2001-05-22 Jeffrey Stedfast <fejj@ximian.com> * message-browser.c (message_browser_folder_loaded): Instead of calling message_list_select_uid() here, instead connect to the "message_list_loaded" signal since the message-list is not built yet at this point. (message_browser_message_list_built): Call message_list_select_uid() here instead. * message-list.c: Lets have a new signal, MESSAGE_LIST_BUILT, that gets emitted when the message-list has finished being built by one of the built_*() functions. (message_list_class_init): Setup the signal stuff. (regen_list_regened): Emit the signal here (should this perhaps be moved into each of the build_*() functions instead?). svn path=/trunk/; revision=9925
Diffstat (limited to 'mail/message-list.h')
-rw-r--r--mail/message-list.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/message-list.h b/mail/message-list.h
index 837b8d837f..86c5caf3df 100644
--- a/mail/message-list.h
+++ b/mail/message-list.h
@@ -87,6 +87,7 @@ typedef struct {
/* signals - select a message */
void (*message_selected) (MessageList *ml, const char *uid);
+ void (*message_list_built) (MessageList *ml);
} MessageListClass;
typedef void (*MessageListForeachFunc) (MessageList *message_list,