[conform] use proper condition, again.

SVN revision: 82452
This commit is contained in:
Shinwoo Kim 2013-01-09 11:24:11 +00:00
parent 75c47c7ebb
commit e301666c65
1 changed files with 2 additions and 1 deletions

View File

@ -299,7 +299,8 @@ _land_indicator_connect_cb(void *data)
Elm_Conformant_Smart_Data *sd = data;
int rot;
if (!sd || (sd->indmode != ELM_WIN_INDICATOR_SHOW))
if (!sd) return ECORE_CALLBACK_CANCEL;
if (sd->indmode != ELM_WIN_INDICATOR_SHOW)
{
sd->land_indi_timer = NULL;
return ECORE_CALLBACK_CANCEL;