oops - forgot to return CALLBACK_CANCEL on elm_clock

SVN revision: 49553
This commit is contained in:
Bruno Dilly 2010-06-07 13:43:07 +00:00
parent 37250a5ab6
commit 8214ddb83d
1 changed files with 6 additions and 6 deletions

View 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;