oops - forgot to return CALLBACK_CANCEL on elm_clock
authorBruno Dilly <bdilly@profusion.mobi>
Mon, 7 Jun 2010 13:43:07 +0000 (13:43 +0000)
committerBruno Dilly <bdilly@profusion.mobi>
Mon, 7 Jun 2010 13:43:07 +0000 (13:43 +0000)
SVN revision: 49553

src/lib/elm_clock.c

index 6606ba59d1d0a2db36ae37f0eaab04b4e037cc5a..4b5044a22583c84686d55184a985a746bbc3a426 100644 (file)
@@ -115,9 +115,9 @@ static int
 _signal_clock_val_up(void *data)
 {
    Widget_Data *wd = elm_widget_data_get(data);
-   if (!wd) return;
-   if (!wd->edit) return;
-   if (!wd->sel_obj) return;
+   if (!wd) return ECORE_CALLBACK_CANCEL;
+   if (!wd->edit) return ECORE_CALLBACK_CANCEL;
+   if (!wd->sel_obj) return ECORE_CALLBACK_CANCEL;
    if (wd->sel_obj == wd->digit[0])
      {
        wd->hrs = wd->hrs + 10;
@@ -164,9 +164,9 @@ static int
 _signal_clock_val_down(void *data)
 {
    Widget_Data *wd = elm_widget_data_get(data);
-   if (!wd) return;
-   if (!wd->edit) return;
-   if (!wd->sel_obj) return;
+   if (!wd) return ECORE_CALLBACK_CANCEL;
+   if (!wd->edit) return ECORE_CALLBACK_CANCEL;
+   if (!wd->sel_obj) return ECORE_CALLBACK_CANCEL;
    if (wd->sel_obj == wd->digit[0])
      {
        wd->hrs = wd->hrs - 10;