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-accounts.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-accounts.c')
-rw-r--r-- | mail/mail-accounts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-accounts.c b/mail/mail-accounts.c index 784805481c..f946ddc8f0 100644 --- a/mail/mail-accounts.c +++ b/mail/mail-accounts.c @@ -633,7 +633,7 @@ mail_accounts_tab_new (GNOME_Evolution_Shell shell) { MailAccountsTab *new; - new = (MailAccountsTab *) gtk_type_new (mail_accounts_tab_get_type ()); + new = (MailAccountsTab *) g_object_new (mail_accounts_tab_get_type (), NULL); mail_accounts_tab_construct (new); new->shell = shell; |