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/folder-browser.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/folder-browser.c')
-rw-r--r-- | mail/folder-browser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/folder-browser.c b/mail/folder-browser.c index fee9adc3a2..1296863978 100644 --- a/mail/folder-browser.c +++ b/mail/folder-browser.c @@ -2569,7 +2569,7 @@ folder_browser_new (const GNOME_Evolution_Shell shell, const char *uri) CORBA_exception_init (&ev); - folder_browser = gtk_type_new (folder_browser_get_type ()); + folder_browser = g_object_new (folder_browser_get_type (), NULL); my_folder_browser_init (folder_browser); |