diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-02-12 00:54:59 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-02-12 00:54:59 +0800 |
commit | af223e6f19084fcd08a613d1e88c0d31d5161266 (patch) | |
tree | 388d91a090008eca9c3fb4f44726c91beb820b7e /mail/message-tag-followup.c | |
parent | a541fc716262e7fc7f0f527fc8b268d22d202a43 (diff) | |
download | gsoc2013-evolution-af223e6f19084fcd08a613d1e88c0d31d5161266.tar.gz gsoc2013-evolution-af223e6f19084fcd08a613d1e88c0d31d5161266.tar.zst gsoc2013-evolution-af223e6f19084fcd08a613d1e88c0d31d5161266.zip |
Implemented. (on_right_click): Do better enabling/hiding of unwanted
2002-02-11 Jeffrey Stedfast <fejj@ximian.com>
* folder-browser.c (followup_tag_complete): Implemented.
(on_right_click): Do better enabling/hiding of unwanted
flag-for-followup options.
svn path=/trunk/; revision=15675
Diffstat (limited to 'mail/message-tag-followup.c')
-rw-r--r-- | mail/message-tag-followup.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/mail/message-tag-followup.c b/mail/message-tag-followup.c index 5c46418391..86a7abd95b 100644 --- a/mail/message-tag-followup.c +++ b/mail/message-tag-followup.c @@ -88,15 +88,17 @@ static void message_tag_followup_class_init (MessageTagFollowUpClass *klass) { GtkObjectClass *object_class; + MessageTagEditorClass *editor_class; object_class = (GtkObjectClass *) klass; + editor_class = (MessageTagEditorClass *) klass; parent_class = gtk_type_class (message_tag_editor_get_type ()); object_class->finalize = message_tag_followup_finalise; - parent_class->get_name = tag_get_name; - parent_class->get_value = tag_get_value; - parent_class->set_value = tag_set_value; + editor_class->get_name = tag_get_name; + editor_class->get_value = tag_get_value; + editor_class->set_value = tag_set_value; } static void @@ -130,7 +132,7 @@ message_tag_followup_finalise (GtkObject *obj) static const char * -tag_get_name (MessageTagEditor *editor) +tag_get_name (MessageTagEditor *editor) { return "follow-up"; } |