aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations/exchange-account-setup.c
diff options
context:
space:
mode:
authorSarfraaz Ahmed <asarfraaz@novell.com>2005-07-19 16:51:05 +0800
committerAhmed Sarfraaz <sarfraaz@src.gnome.org>2005-07-19 16:51:05 +0800
commitfa8623e7ea878cdb46503db7e2dcee285019ff31 (patch)
treefe7472528d5bcfa8e0abb8676a834cf762183154 /plugins/exchange-operations/exchange-account-setup.c
parente09fba5e09dccff6486fdab0b893303f0716c790 (diff)
downloadgsoc2013-evolution-fa8623e7ea878cdb46503db7e2dcee285019ff31.tar
gsoc2013-evolution-fa8623e7ea878cdb46503db7e2dcee285019ff31.tar.gz
gsoc2013-evolution-fa8623e7ea878cdb46503db7e2dcee285019ff31.tar.bz2
gsoc2013-evolution-fa8623e7ea878cdb46503db7e2dcee285019ff31.tar.lz
gsoc2013-evolution-fa8623e7ea878cdb46503db7e2dcee285019ff31.tar.xz
gsoc2013-evolution-fa8623e7ea878cdb46503db7e2dcee285019ff31.tar.zst
gsoc2013-evolution-fa8623e7ea878cdb46503db7e2dcee285019ff31.zip
This is no longer needed. gtk_widget_destroy will take care of destroying
2005-07-18 Sarfraaz Ahmed <asarfraaz@novell.com> * exchange-folder-size-display.c (parent_destroyed) : This is no longer needed. gtk_widget_destroy will take care of destroying it. Fixes #310699 * exchange-account-setup.c (org_gnome_exchange_settings) : Fixed a warning. Alignment cannot be set for a radio button svn path=/trunk/; revision=29796
Diffstat (limited to 'plugins/exchange-operations/exchange-account-setup.c')
-rw-r--r--plugins/exchange-operations/exchange-account-setup.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/exchange-operations/exchange-account-setup.c b/plugins/exchange-operations/exchange-account-setup.c
index 8e7dd2e2e0..e0b949ba16 100644
--- a/plugins/exchange-operations/exchange-account-setup.c
+++ b/plugins/exchange-operations/exchange-account-setup.c
@@ -164,7 +164,8 @@ btn_fsize_clicked (GtkButton *button, gpointer data)
account = acclist->data;
model = exchange_account_folder_size_get_model (account);
- exchange_folder_size_display (model, GTK_WIDGET (button));
+ if (model)
+ exchange_folder_size_display (model, GTK_WIDGET (button));
}
/* only used in editor */
@@ -278,8 +279,6 @@ org_gnome_exchange_settings(EPlugin *epl, EConfigHookItemFactoryData *data)
radio_iof = (GtkRadioButton*) gtk_object_new (GTK_TYPE_RADIO_BUTTON, "label", _("I am in the office"), NULL);
radio_oof = (GtkRadioButton*) gtk_object_new (GTK_TYPE_RADIO_BUTTON, "label", _("I am out of the office"), "group", radio_iof, NULL);
}
- gtk_misc_set_alignment (GTK_MISC (radio_iof), 0, 0.5);
- gtk_misc_set_alignment (GTK_MISC (radio_oof), 0, 0.5);
gtk_signal_connect (GTK_OBJECT (radio_oof), "toggled", G_CALLBACK (toggled_state), NULL);