aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-alert.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-11-01 04:02:30 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2010-11-10 06:33:20 +0800
commit4a929caada81820d7499b09875870b84e9900912 (patch)
treef68e00a2c0e5c24d00ae0ec32c11570383a480e7 /e-util/e-alert.h
parent3d7cfbbd2f67e40fea1a5c231e8fc7d6c28f2a01 (diff)
downloadgsoc2013-evolution-4a929caada81820d7499b09875870b84e9900912.tar
gsoc2013-evolution-4a929caada81820d7499b09875870b84e9900912.tar.gz
gsoc2013-evolution-4a929caada81820d7499b09875870b84e9900912.tar.bz2
gsoc2013-evolution-4a929caada81820d7499b09875870b84e9900912.tar.lz
gsoc2013-evolution-4a929caada81820d7499b09875870b84e9900912.tar.xz
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 'e-util/e-alert.h')
-rw-r--r--e-util/e-alert.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/e-util/e-alert.h b/e-util/e-alert.h
index f9f0fc8559..4d6b2671b4 100644
--- a/e-util/e-alert.h
+++ b/e-util/e-alert.h
@@ -57,6 +57,8 @@
G_BEGIN_DECLS
+struct _EAlertSink;
+
typedef struct _EAlert EAlert;
typedef struct _EAlertClass EAlertClass;
typedef struct _EAlertPrivate EAlertPrivate;
@@ -103,10 +105,10 @@ GtkWidget * e_alert_create_image (EAlert *alert,
void e_alert_response (EAlert *alert,
gint response_id);
-void e_alert_submit (GtkWidget *widget,
+void e_alert_submit (struct _EAlertSink *alert_sink,
const gchar *tag,
...) G_GNUC_NULL_TERMINATED;
-void e_alert_submit_valist (GtkWidget *widget,
+void e_alert_submit_valist (struct _EAlertSink *alert_sink,
const gchar *tag,
va_list va);