diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-14 03:41:17 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-14 03:41:17 +0800 |
commit | 0cdfb61be23755d67fca08dfc73fc49bab66c826 (patch) | |
tree | 061a9d016b1f0d90448a19b77b687ce9f17981ea /mail/mail-account-gui.c | |
parent | 92a54f0660c72e5b6c63ca6451c5168d95ff9d12 (diff) | |
download | gsoc2013-evolution-0cdfb61be23755d67fca08dfc73fc49bab66c826.tar.gz gsoc2013-evolution-0cdfb61be23755d67fca08dfc73fc49bab66c826.tar.zst gsoc2013-evolution-0cdfb61be23755d67fca08dfc73fc49bab66c826.zip |
Use g_object_new() instead of gtk_type_new(). Likewise. Likewise.
* folder-info.c (evolution_folder_info_factory_fn): Use
g_object_new() instead of gtk_type_new().
* folder-browser.c (folder_browser_new): Likewise.
* mail-account-gui.c
(mail_account_gui_folder_selector_button_new): Likewise.
* mail-font-prefs.c (mail_font_prefs_new): Likewise.
svn path=/trunk/; revision=18742
Diffstat (limited to 'mail/mail-account-gui.c')
-rw-r--r-- | mail/mail-account-gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-account-gui.c b/mail/mail-account-gui.c index 935f95585a..a4300eab2e 100644 --- a/mail/mail-account-gui.c +++ b/mail/mail-account-gui.c @@ -1062,7 +1062,7 @@ mail_account_gui_folder_selector_button_new (char *widget_name, char *string1, char *string2, int int1, int int2) { - return (GtkWidget *)gtk_type_new (EVOLUTION_TYPE_FOLDER_SELECTOR_BUTTON); + return (GtkWidget *)g_object_new (EVOLUTION_TYPE_FOLDER_SELECTOR_BUTTON, NULL); } static gboolean |