discomfitor pushed a commit to branch master.

commit 15933c43a05ce2f9941e5009e9012555f1fe19d1
Author: Mike Blumenkrantz <[email protected]>
Date:   Thu May 23 09:57:46 2013 +0100

    improve e_comp_util_wins_print for non-border comp wins
---
 src/bin/e_comp.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c
index 9cc5ceb..ee66622 100644
--- a/src/bin/e_comp.c
+++ b/src/bin/e_comp.c
@@ -5465,7 +5465,17 @@ e_comp_util_wins_print(const E_Comp *c)
         else if (cw->real_obj)
           fprintf(stderr, "COMP OBJ: %p - %s\n", cw, 
evas_object_name_get(cw->obj));
         else
-          fprintf(stderr, "COMP WIN: %p - %u%s%s\n", cw, cw->win, 
cw->input_only ? " INPUT" : "", cw->override ? " OVERRIDE" : "");
+          {
+             fprintf(stderr, "COMP WIN: %p - %u", cw, cw->win);
+             if (cw->name || cw->title)
+               {
+                  fprintf(stderr, " '%s", cw->name ?: "");
+                  if (cw->title)
+                    fprintf(stderr, ":%s", cw->title);
+                  fprintf(stderr, "'");
+               }
+            fprintf(stderr, "%s%s\n", cw->input_only ? " INPUT" : "", 
cw->override ? " OVERRIDE" : "");
+          }
      }
 }
 

-- 

------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may

Reply via email to