From 38b8ba509bb57a7e528ecc20a1e2c1d50930e634 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Fri, 23 Jan 2015 13:49:09 +0100 Subject: [PATCH] e_notification: de-e_comp_get()ify --- src/bin/e_notification.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_notification.c b/src/bin/e_notification.c index 021ab0c52..ae57eb793 100644 --- a/src/bin/e_notification.c +++ b/src/bin/e_notification.c @@ -93,8 +93,8 @@ notify_cb(const Eldbus_Service_Interface *iface EINA_UNUSED, const Eldbus_Messag if (e_screensaver_on_get() && e_config->screensaver_wake_on_notify) { int x, y; - ecore_evas_pointer_xy_get(e_comp_get(NULL)->ee, &x, &y); - ecore_evas_pointer_warp(e_comp_get(NULL)->ee, x, y); + ecore_evas_pointer_xy_get(e_comp->ee, &x, &y); + ecore_evas_pointer_warp(e_comp->ee, x, y); } eldbus_message_iter_dict_iterate(hints_iter, "sv", hints_dict_iter, n); n->app_name = eina_stringshare_add(n->app_name);