diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-12-18 04:38:25 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-12-18 04:38:25 +0800 |
commit | f37b0a1ab7d9dd437905d10d85410992ad9abc0a (patch) | |
tree | c8d13292527ab275073420046acb7f786b4a4008 /mail/message-tag-followup.c | |
parent | e446a3dd9f6f82ef7152a98740092cb1c94af65c (diff) | |
download | gsoc2013-evolution-f37b0a1ab7d9dd437905d10d85410992ad9abc0a.tar.gz gsoc2013-evolution-f37b0a1ab7d9dd437905d10d85410992ad9abc0a.tar.zst gsoc2013-evolution-f37b0a1ab7d9dd437905d10d85410992ad9abc0a.zip |
...And a whole bunch more build fixes.
2002-12-17 Jeffrey Stedfast <fejj@ximian.com>
...And a whole bunch more build fixes.
* mail-vfolder.c (mail_vfolder_delete_uri): Don't use
g_string_sprintfa() anymore since it is apparently deprecated.
* mail-session.c (main_get_filter_driver): Don't use
g_string_sprintfa() anymore since it is apparently deprecated.
* mail-ops.c (build_from): Don't use g_string_sprintfa() anymore
since it is apparently deprecated.
* mail-callbacks.c (ask_confirm_for_unwanted_html_mail): Don't use
g_string_sprintfa() anymore since it is apparently deprecated.
* mail-autofilter.c: Don't use g_string_sprintfa() anymore since
it is apparently deprecated.
* folder-browser.c: Don't use g_string_sprintfa() anymore since it
is apparently deprecated.
* mail-search.c (mail_search_set_subject): Remove the unnecessary
g_strdup()'age as well as fix a possible buffer overrun.
* mail-local.c (mail_local_folder_construct): Use
g_path_get_basename().
* mail-config-druid.c (make_account): Don't use e_utf8_*
functions.
svn path=/trunk/; revision=19152
Diffstat (limited to 'mail/message-tag-followup.c')
-rw-r--r-- | mail/message-tag-followup.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/message-tag-followup.c b/mail/message-tag-followup.c index 875918d05b..99de43a7c7 100644 --- a/mail/message-tag-followup.c +++ b/mail/message-tag-followup.c @@ -33,8 +33,6 @@ #include <libgnomeui/gnome-window-icon.h> #include <libgnomeui/gnome-pixmap.h> -#include <gal/widgets/e-unicode.h> - #include "message-tag-followup.h" #include "mail-config.h" @@ -72,17 +70,19 @@ message_tag_followup_get_type (void) static GType type = 0; if (!type) { - GTypeInfo type_info = { + static const GTypeInfo info = { sizeof (MessageTagFollowUpClass), - NULL, NULL, + NULL, /* base_class_init */ + NULL, /* base_class_finalize */ (GClassInitFunc) message_tag_followup_class_init, - NULL, NULL, + NULL, /* class_finalize */ + NULL, /* class_data */ sizeof (MessageTagFollowUp), 0, (GInstanceInitFunc) message_tag_followup_init, }; - type = g_type_register_static (message_tag_editor_get_type (), "MessageTagFollowUp", &type_info, 0); + type = g_type_register_static (message_tag_editor_get_type (), "MessageTagFollowUp", &info, 0); } return type; |