e_service_quickpanel: remove log 84/159284/1
authorJuyeon Lee <juyeonne.lee@samsung.com>
Wed, 8 Nov 2017 04:34:52 +0000 (13:34 +0900)
committerJuyeon Lee <juyeonne.lee@samsung.com>
Wed, 8 Nov 2017 04:34:52 +0000 (13:34 +0900)
Change-Id: Idbb4e3866f384e111c8186565e379fa1f904a2bf

src/bin/services/e_service_quickpanel.c

index a543d54c8999ab64c10b1d5af31879c08def1fde..827bf6dc459efd507def76a2899ebffb192edcdf 100644 (file)
@@ -1824,9 +1824,9 @@ e_qp_visible_get(void)
    int x, y, w, h;
 
    qp = _quickpanel_get();
-   EINA_SAFETY_ON_NULL_RETURN_VAL(qp, EINA_FALSE);
-   EINA_SAFETY_ON_NULL_RETURN_VAL(qp->ec, EINA_FALSE);
-   EINA_SAFETY_ON_TRUE_RETURN_VAL(e_object_is_del(E_OBJECT(qp->ec)), EINA_FALSE);
+   if (!qp) return EINA_FALSE;
+   if (!qp->ec) return EINA_FALSE;
+   if (e_object_is_del(E_OBJECT(qp->ec))) return EINA_FALSE;
 
    ec = qp->ec;
    evas_object_geometry_get(ec->frame, &x, &y, &w, &h);