diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-11-01 04:02:30 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2010-11-10 06:33:20 +0800 |
commit | 4a929caada81820d7499b09875870b84e9900912 (patch) | |
tree | f68e00a2c0e5c24d00ae0ec32c11570383a480e7 /widgets | |
parent | 3d7cfbbd2f67e40fea1a5c231e8fc7d6c28f2a01 (diff) | |
download | gsoc2013-evolution-4a929caada81820d7499b09875870b84e9900912.tar.gz gsoc2013-evolution-4a929caada81820d7499b09875870b84e9900912.tar.zst gsoc2013-evolution-4a929caada81820d7499b09875870b84e9900912.zip |
Pass an EAlertSink to e_alert_sink_submit_alert().
Passing a random GtkWidget and then searching its ancestors for an
EAlertSink turned out to be not as useful as I thought. Most of the
time we know about and have access to the widget that implements
EAlertSink, so just pass it directly as an EAlertSink.
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-signature-editor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/widgets/misc/e-signature-editor.c b/widgets/misc/e-signature-editor.c index 6a18d58b8d..fcc76c8cb9 100644 --- a/widgets/misc/e-signature-editor.c +++ b/widgets/misc/e-signature-editor.c @@ -153,7 +153,7 @@ action_save_and_close_cb (GtkAction *action, if (error != NULL) { e_alert_submit ( - GTK_WIDGET (editor), + E_ALERT_SINK (editor), "mail:no-save-signature", error->message, NULL); g_clear_error (&error); @@ -168,7 +168,7 @@ action_save_and_close_cb (GtkAction *action, /* Make sure the signature name is not blank. */ if (*signature_name == '\0') { e_alert_submit ( - GTK_WIDGET (editor), + E_ALERT_SINK (editor), "mail:blank-signature", NULL); gtk_widget_grab_focus (entry); g_free (signature_name); @@ -180,7 +180,7 @@ action_save_and_close_cb (GtkAction *action, e_signature_list_find_by_name (signature_list, signature_name); if (same_name != NULL && !e_signature_is_equal (signature, same_name)) { e_alert_submit ( - GTK_WIDGET (editor), + E_ALERT_SINK (editor), "mail:signature-already-exists", signature_name, NULL); gtk_widget_grab_focus (entry); |