From 73a8a1b248293643aaca7afe40480d2cf6de64e9 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Fri, 27 Aug 2010 15:48:53 +0200 Subject: factor out set_apply_button() --- libempathy-gtk/empathy-account-widget.c | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'libempathy-gtk/empathy-account-widget.c') diff --git a/libempathy-gtk/empathy-account-widget.c b/libempathy-gtk/empathy-account-widget.c index 1fec201a0..3f49cbc18 100644 --- a/libempathy-gtk/empathy-account-widget.c +++ b/libempathy-gtk/empathy-account-widget.c @@ -1462,6 +1462,16 @@ do_get_property (GObject *object, } } +static void +set_apply_button (EmpathyAccountWidget *self) +{ + EmpathyAccountWidgetPriv *priv = GET_PRIV (self); + + gtk_button_set_image (GTK_BUTTON (priv->apply_button), NULL); + gtk_button_set_use_stock (GTK_BUTTON (priv->apply_button), TRUE); + gtk_button_set_label (GTK_BUTTON (priv->apply_button), GTK_STOCK_APPLY); +} + static void presence_changed_cb (TpAccountManager *manager, TpConnectionPresenceType state, @@ -1495,9 +1505,7 @@ presence_changed_cb (TpAccountManager *manager, { /* We are offline or modifying an existing account, display * a Save button */ - gtk_button_set_image (GTK_BUTTON (priv->apply_button), NULL); - gtk_button_set_use_stock (GTK_BUTTON (priv->apply_button), TRUE); - gtk_button_set_label (GTK_BUTTON (priv->apply_button), GTK_STOCK_APPLY); + set_apply_button (self); } } @@ -1723,7 +1731,8 @@ do_constructed (GObject *obj) priv->cancel_button = gtk_button_new_from_stock (GTK_STOCK_CANCEL); - priv->apply_button = gtk_button_new_from_stock (GTK_STOCK_APPLY); + priv->apply_button = gtk_button_new (); + set_apply_button (self); /* We'll change this button to a "Log in" one if we are creating a new * account and are connected. */ -- cgit v1.2.3