From 36048e5beed0a3a22b72b82f328fe628bd4094e2 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 17 Jul 2012 08:44:08 +0000 Subject: [PATCH] smart callback for efm widget typebuf change SVN revision: 73958 --- src/bin/e_fm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/e_fm.c b/src/bin/e_fm.c index e165f83c3..d6da0d16d 100644 --- a/src/bin/e_fm.c +++ b/src/bin/e_fm.c @@ -5620,6 +5620,7 @@ _e_fm2_typebuf_char_append(Evas_Object *obj, const char *ch) sd->typebuf.buf = ts; _e_fm2_typebuf_match(obj, 0); edje_object_part_text_set(sd->overlay, "e.text.typebuf_label", sd->typebuf.buf); + evas_object_smart_callback_call(sd->obj, "typebuf_changed", sd->typebuf.buf); } static void @@ -5646,6 +5647,7 @@ _e_fm2_typebuf_char_backspace(Evas_Object *obj) sd->typebuf.buf = ts; _e_fm2_typebuf_match(obj, 0); edje_object_part_text_set(sd->overlay, "e.text.typebuf_label", sd->typebuf.buf); + evas_object_smart_callback_call(sd->obj, "typebuf_changed", sd->typebuf.buf); } /**************************/