Fixes for Ecore Api changes.

SVN revision: 49835
This commit is contained in:
Christopher Michael 2010-06-24 17:52:35 +00:00
parent 180e057bb3
commit 6270d0af60
1 changed files with 3 additions and 3 deletions

View File

@ -432,7 +432,7 @@ e_kbd_dict_save(E_Kbd_Dict *kd)
if (_e_kbd_dict_open(kd)) _e_kbd_dict_lookup_build(kd); if (_e_kbd_dict_open(kd)) _e_kbd_dict_lookup_build(kd);
} }
static int static Eina_Bool
_e_kbd_dict_cb_save_flush(void *data) _e_kbd_dict_cb_save_flush(void *data)
{ {
E_Kbd_Dict *kd; E_Kbd_Dict *kd;
@ -440,10 +440,10 @@ _e_kbd_dict_cb_save_flush(void *data)
kd = data; kd = data;
if ((kd->matches.list) || (kd->word.letters) || (kd->matches.deadends) || if ((kd->matches.list) || (kd->word.letters) || (kd->matches.deadends) ||
(kd->matches.leads)) (kd->matches.leads))
return 1; return EINA_TRUE;
kd->changed.flush_timer = NULL; kd->changed.flush_timer = NULL;
e_kbd_dict_save(kd); e_kbd_dict_save(kd);
return 0; return EINA_FALSE;
} }
static void static void