diff --git a/src/lib/efl/interfaces/efl_ui_format.c b/src/lib/efl/interfaces/efl_ui_format.c index 390a45173b..04bf96425e 100644 --- a/src/lib/efl/interfaces/efl_ui_format.c +++ b/src/lib/efl/interfaces/efl_ui_format.c @@ -100,12 +100,6 @@ _default_format_cb(void *data, Eina_Strbuf *str, const Eina_Value value) eina_value_get(&value, &v); eina_strbuf_append_printf(str, sd->template, v); } - else if (type == EINA_VALUE_TYPE_TM) - { - struct tm v; - eina_value_get(&value, &v); - eina_strbuf_append_strftime(str, sd->template, &v); - } else { char *v = eina_value_to_string(&value);