tasn pushed a commit to branch master. http://git.enlightenment.org/tools/clouseau.git/commit/?id=25ad368bfd627764908180e4af4d221232b1c763
commit 25ad368bfd627764908180e4af4d221232b1c763 Author: Tom Hacohen <t...@stosb.com> Date: Thu Nov 7 10:30:36 2013 +0000 client: put object name before the pointer. This looks much better and much more usable. --- src/bin/clouseau_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/clouseau_client.c b/src/bin/clouseau_client.c index 1484485..642dd0a 100644 --- a/src/bin/clouseau_client.c +++ b/src/bin/clouseau_client.c @@ -1182,7 +1182,7 @@ item_text_get(void *data, Evas_Object *obj EINA_UNUSED, { Clouseau_Tree_Item *treeit = data; char buf[256]; - snprintf(buf, sizeof(buf), "%llx %s", treeit->ptr, treeit->name); + snprintf(buf, sizeof(buf), "%s %llx", treeit->name, treeit->ptr); return strdup(buf); } --