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 /modules | |
parent | 3d7cfbbd2f67e40fea1a5c231e8fc7d6c28f2a01 (diff) | |
download | gsoc2013-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 'modules')
-rw-r--r-- | modules/offline-alert/evolution-offline-alert.c | 5 |
1 files changed, 3 insertions, 2 deletions
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); } |