From 40bcf2e6ccf6de3859bf056b9e04c74d7126f9f4 Mon Sep 17 00:00:00 2001 From: Junghwan Choi Date: Sat, 27 Aug 2016 10:50:55 +0900 Subject: [PATCH] fix misssing pixmap param for ELOG/ELOGF Change-Id: If14f288360f554146f743794621a95b4d7302243 Signed-off-by: Junghwan Choi --- src/bin/e_client.c | 2 +- src/bin/e_comp_object.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_client.c b/src/bin/e_client.c index cd48379..37096e6 100644 --- a/src/bin/e_client.c +++ b/src/bin/e_client.c @@ -4325,7 +4325,7 @@ e_client_focused_set(E_Client *ec) TRACE_DS_BEGIN(CLIENT:FOCUSED SET); - ELOG("CLIENT FOCUS_SET", NULL, ec); + ELOG("CLIENT FOCUS_SET", (ec ? ec->pixmap : NULL), ec); focused = ec; if ((ec) && (ec->zone)) { diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 8aea363..6c0400f 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -4579,7 +4579,7 @@ e_comp_object_mask_set(Evas_Object *obj, Eina_Bool set) if (cw->visible) evas_object_show(o); cw->mask_obj = o; - ELOGF("COMP", " |mask_obj", NULL, cw->ec); + ELOGF("COMP", " |mask_obj", cw->ec->pixmap, cw->ec); } evas_object_layer_set(cw->mask_obj, 9998); -- 2.7.4