aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-accounts.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-14 03:41:17 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-14 03:41:17 +0800
commit0cdfb61be23755d67fca08dfc73fc49bab66c826 (patch)
tree061a9d016b1f0d90448a19b77b687ce9f17981ea /mail/mail-accounts.c
parent92a54f0660c72e5b6c63ca6451c5168d95ff9d12 (diff)
downloadgsoc2013-evolution-0cdfb61be23755d67fca08dfc73fc49bab66c826.tar
gsoc2013-evolution-0cdfb61be23755d67fca08dfc73fc49bab66c826.tar.gz
gsoc2013-evolution-0cdfb61be23755d67fca08dfc73fc49bab66c826.tar.bz2
gsoc2013-evolution-0cdfb61be23755d67fca08dfc73fc49bab66c826.tar.lz
gsoc2013-evolution-0cdfb61be23755d67fca08dfc73fc49bab66c826.tar.xz
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.c2
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;