diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-01-13 06:54:29 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-01-14 03:17:42 +0800 |
commit | a6d296b998729abc78e634844cc4a3aeda7d0327 (patch) | |
tree | 136c24bd250a288f8152cd563969f3954adc75be /widgets/misc/e-send-options.c | |
parent | 4d114e022ca38e7aeb6cc2cc3715f7dca69c82a6 (diff) | |
download | gsoc2013-evolution-a6d296b998729abc78e634844cc4a3aeda7d0327.tar.gz gsoc2013-evolution-a6d296b998729abc78e634844cc4a3aeda7d0327.tar.zst gsoc2013-evolution-a6d296b998729abc78e634844cc4a3aeda7d0327.zip |
Baby steps toward GSEAL compliance.
Diffstat (limited to 'widgets/misc/e-send-options.c')
-rw-r--r-- | widgets/misc/e-send-options.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/widgets/misc/e-send-options.c b/widgets/misc/e-send-options.c index c134bfba6e..4f2ad8a9a4 100644 --- a/widgets/misc/e-send-options.c +++ b/widgets/misc/e-send-options.c @@ -260,7 +260,7 @@ sensitize_widgets (ESendOptionsDialog *sod) } static void -expiration_toggled_cb (GtkWidget *toggle, gpointer data) +expiration_toggled_cb (GtkToggleButton *toggle, gpointer data) { gboolean active; ESendOptionsDialog *sod; @@ -269,13 +269,13 @@ expiration_toggled_cb (GtkWidget *toggle, gpointer data) sod = data; priv = sod->priv; - active = GTK_TOGGLE_BUTTON (toggle)->active; + active = gtk_toggle_button_get_active (toggle); gtk_widget_set_sensitive (priv->expire_after, active); } static void -reply_request_toggled_cb (GtkWidget *toggle, gpointer data) +reply_request_toggled_cb (GtkToggleButton *toggle, gpointer data) { gboolean active; ESendOptionsDialog *sod; @@ -283,7 +283,7 @@ reply_request_toggled_cb (GtkWidget *toggle, gpointer data) sod = data; priv = sod->priv; - active = GTK_TOGGLE_BUTTON (toggle)->active; + active = gtk_toggle_button_get_active (toggle); gtk_widget_set_sensitive (priv->reply_convenient, active); gtk_widget_set_sensitive (priv->reply_within, active); @@ -292,7 +292,7 @@ reply_request_toggled_cb (GtkWidget *toggle, gpointer data) } static void -delay_delivery_toggled_cb (GtkWidget *toggle, gpointer data) +delay_delivery_toggled_cb (GtkToggleButton *toggle, gpointer data) { gboolean active; ESendOptionsDialog *sod; @@ -300,13 +300,13 @@ delay_delivery_toggled_cb (GtkWidget *toggle, gpointer data) sod = data; priv = sod->priv; - active = GTK_TOGGLE_BUTTON (toggle)->active; + active = gtk_toggle_button_get_active (toggle); gtk_widget_set_sensitive (priv->delay_until, active); } static void -sent_item_toggled_cb (GtkWidget *toggle, gpointer data) +sent_item_toggled_cb (GtkToggleButton *toggle, gpointer data) { gboolean active; ESendOptionsDialog *sod; @@ -314,7 +314,7 @@ sent_item_toggled_cb (GtkWidget *toggle, gpointer data) sod = data; priv = sod->priv; - active = GTK_TOGGLE_BUTTON (toggle)->active; + active = gtk_toggle_button_get_active (toggle); gtk_widget_set_sensitive (priv->delivered, active); gtk_widget_set_sensitive (priv->delivered_opened, active); |