From 82925c6be94e9e48e4ef521a88a9feec24cf9eef Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sun, 31 Oct 2010 16:02:30 -0400 Subject: 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. --- modules/offline-alert/evolution-offline-alert.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'modules/offline-alert') diff --git a/modules/offline-alert/evolution-offline-alert.c b/modules/offline-alert/evolution-offline-alert.c index 8b1de84d6c..c759e50249 100644 --- a/modules/offline-alert/evolution-offline-alert.c +++ b/modules/offline-alert/evolution-offline-alert.c @@ -96,7 +96,8 @@ offline_alert_network_available_cb (EShell *shell, if (!E_IS_SHELL_WINDOW (window)) continue; - e_alert_sink_submit_alert (window, extension->alert); + e_alert_sink_submit_alert ( + E_ALERT_SINK (window), extension->alert); } g_object_unref (extension->alert); @@ -148,7 +149,7 @@ offline_alert_window_created_cb (EShell *shell, g_object_add_weak_pointer ( G_OBJECT (extension->alert), &extension->alert); - e_alert_sink_submit_alert (GTK_WIDGET (window), extension->alert); + e_alert_sink_submit_alert (E_ALERT_SINK (window), extension->alert); g_object_unref (extension->alert); } -- cgit v1.2.3