From 168ae4605ab289e991d57977cdee22e03ca2fd20 Mon Sep 17 00:00:00 2001 From: Sohyun Kim Date: Wed, 25 Aug 2010 17:34:20 +0900 Subject: [PATCH] [elm_datefield]remove printf --- src/lib/elm_datefield.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/lib/elm_datefield.c b/src/lib/elm_datefield.c index 5ab3729..bc43e17 100755 --- a/src/lib/elm_datefield.c +++ b/src/lib/elm_datefield.c @@ -178,21 +178,15 @@ _signal_ampm_clicked(void *data, Evas_Object *obj, const char *emission, const c Widget_Data *wd = elm_widget_data_get(data); if (!wd || !wd->base) return ; - printf("[%s][%d]\n", __FUNCTION__, __LINE__); - wd->pm = !wd->pm; if (wd->pm) { - printf("[%s][%d]\n", __FUNCTION__, __LINE__); - edje_object_part_text_set(wd->base, "elm.text.ampm", "PM"); wd->hour += HOUR_12H_MAXIMUM; } else { - printf("[%s][%d]\n", __FUNCTION__, __LINE__); - edje_object_part_text_set(wd->base, "elm.text.ampm", "AM"); wd->hour -= HOUR_12H_MAXIMUM; } -- 2.7.4