printf--
authorCarsten Haitzler <raster@rasterman.com>
Wed, 31 Dec 2008 01:03:36 +0000 (01:03 +0000)
committerCarsten Haitzler <raster@rasterman.com>
Wed, 31 Dec 2008 01:03:36 +0000 (01:03 +0000)
SVN revision: 38369

src/lib/elm_entry.c
src/lib/elm_win.c

index fa80f12..bfe6d32 100644 (file)
@@ -118,14 +118,12 @@ _on_focus_hook(void *data, Evas_Object *obj)
         evas_object_focus_set(wd->ent, 1);
         edje_object_signal_emit(wd->ent, "elm,action,focus", "elm");
         elm_win_keyboard_mode_set(top, ELM_WIN_KEYBOARD_ON);
-        printf("foc on %p\n", obj);
      }
    else
      {
         edje_object_signal_emit(wd->ent, "elm,action,unfocus", "elm");
         evas_object_focus_set(wd->ent, 0);
         elm_win_keyboard_mode_set(top, ELM_WIN_KEYBOARD_OFF);
-        printf("foc off %p\n", obj);
      }
 }
 
index c8882de..0b0cb55 100644 (file)
@@ -574,10 +574,6 @@ elm_win_inwin_activate(Evas_Object *obj)
    evas_object_raise(obj);
    evas_object_show(obj);
    edje_object_signal_emit(wd->frm, "elm,action,show", "elm");
-   printf("clear parent focus %p [%p]\n", 
-          elm_widget_parent_get(obj),
-          elm_widget_parent_get(elm_widget_parent_get(obj))
-          );
    elm_widget_focused_object_clear(elm_widget_parent_get(obj));
 }