diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-02-14 06:28:39 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-02-14 06:28:39 +0800 |
commit | 7751734b69ac0e104c69aea46c8a512465eaa249 (patch) | |
tree | 3606722c4fb7e8559877fe7b439a94e07930a7b6 /mail/message-tag-followup.h | |
parent | 650dfce65f38f23279085082a293f97c28469f3d (diff) | |
download | gsoc2013-evolution-7751734b69ac0e104c69aea46c8a512465eaa249.tar.gz gsoc2013-evolution-7751734b69ac0e104c69aea46c8a512465eaa249.tar.zst gsoc2013-evolution-7751734b69ac0e104c69aea46c8a512465eaa249.zip |
Set the followup icon to use the new flag icon rather than the exclamation
2002-02-13 Jeffrey Stedfast <fejj@ximian.com>
* folder-browser-ui.c: Set the followup icon to use the new flag
icon rather than the exclamation mark icon.
* mail-callbacks.c (flag_for_followup): Append the selected
messages to the clist in the followp editor.
* message-list.c: Include the new flag-for-followup icon.
* message-tag-followup.c (message_tag_followup_append_message):
New method to add a message to the message-list.
(construct): Get the message_list widget and load the flag icon
pixmap.
svn path=/trunk/; revision=15720
Diffstat (limited to 'mail/message-tag-followup.h')
-rw-r--r-- | mail/message-tag-followup.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mail/message-tag-followup.h b/mail/message-tag-followup.h index 75161a4e76..0245809754 100644 --- a/mail/message-tag-followup.h +++ b/mail/message-tag-followup.h @@ -69,6 +69,8 @@ struct _MessageTagFollowUp { struct _FollowUpTag *tag; char *value; + GtkCList *message_list; + GtkOptionMenu *type; GtkWidget *none; @@ -94,6 +96,10 @@ const char *message_tag_followup_i18n_name (int type); MessageTagEditor *message_tag_followup_new (void); +void message_tag_followup_append_message (MessageTagFollowUp *editor, + const char *from, + const char *subject); + #ifdef __cplusplus } #endif /* __cplusplus */ |