From aecfbc5813a177c18f0031b47af7729206427f1e Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sun, 20 Nov 2011 19:03:34 -0500 Subject: Add EMailReader:message-seen signal. Replaces e_mail_reader_mark_as_read(). --- e-util/e-marshal.list | 1 + 1 file changed, 1 insertion(+) (limited to 'e-util') diff --git a/e-util/e-marshal.list b/e-util/e-marshal.list index c42078b2df..884886c83f 100644 --- a/e-util/e-marshal.list +++ b/e-util/e-marshal.list @@ -54,6 +54,7 @@ NONE:POINTER,POINTER,INT NONE:STRING,DOUBLE NONE:STRING,INT NONE:STRING,INT,INT +NONE:STRING,OBJECT NONE:STRING,POINTER,POINTER NONE:STRING,STRING NONE:UINT,STRING -- cgit v1.2.3 From 451179909849e4e4058180f095e6ae889d97b797 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Mon, 21 Nov 2011 18:51:00 -0500 Subject: EAlertBar: Add a close button to all alerts. Replaces the 'Dismiss' button. All alerts appearing in an alert bar should be dismissable (i.e. non-modal). For modal alerts use a dialog. --- e-util/e-alert.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'e-util') diff --git a/e-util/e-alert.c b/e-util/e-alert.c index 88dbb7189d..d4a7a9ea13 100644 --- a/e-util/e-alert.c +++ b/e-util/e-alert.c @@ -909,18 +909,6 @@ e_alert_peek_actions (EAlert *alert) { g_return_val_if_fail (E_IS_ALERT (alert), NULL); - /* Make sure we have at least one action. Do this on-demand - * in case the XML definition did not specify any actions but - * other actions were added via e_alert_add_action(). */ - if (g_queue_is_empty (&alert->priv->actions)) { - GtkAction *action; - - action = gtk_action_new ( - "alert-response-0", _("_Dismiss"), NULL, NULL); - e_alert_add_action (alert, action, GTK_RESPONSE_CLOSE); - g_object_unref (action); - } - return g_queue_peek_head_link (&alert->priv->actions); } -- cgit v1.2.3