diff options
author | Irene Huang <Irene.Huang@sun.com> | 2006-02-20 19:06:55 +0800 |
---|---|---|
committer | Harry Lu <haip@src.gnome.org> | 2006-02-20 19:06:55 +0800 |
commit | 9013865df44ad5a701df9baea7e341ccfdaa840b (patch) | |
tree | 065b3ef02d8ec4f52014c627d4b0611ae42f60ca /plugins | |
parent | 5766964971cb6678d450d2d3b03d896226350117 (diff) | |
download | gsoc2013-evolution-9013865df44ad5a701df9baea7e341ccfdaa840b.tar.gz gsoc2013-evolution-9013865df44ad5a701df9baea7e341ccfdaa840b.tar.zst gsoc2013-evolution-9013865df44ad5a701df9baea7e341ccfdaa840b.zip |
Fixes bug #331635
2006-02-18 Irene Huang <Irene.Huang@sun.com>
Fixes bug #331635
* exchange-account-setup.c: (org_gnome_exchange_settings):
Add NULL as the last parameter in g_object_new to mark the
the end of parameter list.
svn path=/trunk/; revision=31546
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 8 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-account-setup.c | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index 3daa6c1d31..d11a9acf7b 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,11 @@ +2006-02-18 Irene Huang <Irene.Huang@sun.com> + + Fixes bug #331635 + + * exchange-account-setup.c: (org_gnome_exchange_settings): + Add NULL as the last parameter in g_object_new to mark the + the end of parameter list. + 2006-02-10 Sushma Rai <rsushma@novell.com> * exchange-contacts.c (e_exchange_contacts_pcontacts): Checking if the diff --git a/plugins/exchange-operations/exchange-account-setup.c b/plugins/exchange-operations/exchange-account-setup.c index edb73c87ab..8f14f5d9d8 100644 --- a/plugins/exchange-operations/exchange-account-setup.c +++ b/plugins/exchange-operations/exchange-account-setup.c @@ -334,7 +334,7 @@ org_gnome_exchange_settings(EPlugin *epl, EConfigHookItemFactoryData *data) /* Delegation Assistant */ lbl_dass = (GtkLabel*) gtk_object_new (GTK_TYPE_LABEL, "label", _("Manage the delegate settings for Exchange account"), NULL); gtk_misc_set_alignment (GTK_MISC (lbl_dass), 0, 0.5); - btn_dass = (GtkButton*) gtk_object_new (GTK_TYPE_BUTTON, "label", _("Delegation Assitant")); + btn_dass = (GtkButton*) gtk_object_new (GTK_TYPE_BUTTON, "label", _("Delegation Assitant"), NULL); gtk_signal_connect (GTK_OBJECT (btn_dass), "clicked", G_CALLBACK (btn_dass_clicked), NULL); /* Add items to the table */ #ifdef HAVE_KRB5 |