e/evry: warnings--

SVN revision: 65199
This commit is contained in:
Boris Faure 2011-11-14 21:07:29 +00:00
parent 6ee505d059
commit 78c5215f0a
5 changed files with 7 additions and 4 deletions

View File

@ -2772,7 +2772,7 @@ _evry_matches_update(Evry_Selector *sel, int async)
Evry_Item *it; Evry_Item *it;
Evry_Window *win = sel->win; Evry_Window *win = sel->win;
const char *input = NULL; const char *input = NULL;
int len_inp = 0; size_t len_inp = 0;
s->changed = 1; s->changed = 1;
s->request++; s->request++;

View File

@ -667,6 +667,7 @@ _fill_list(Eina_List *plugins, Evas_Object *obj, E_Config_Dialog_Data *cfdata)
evas_event_thaw(evas); evas_event_thaw(evas);
} }
#if 0
static void static void
_list_select_cb(void *data __UNUSED__, Evas_Object *obj) _list_select_cb(void *data __UNUSED__, Evas_Object *obj)
{ {
@ -675,6 +676,7 @@ _list_select_cb(void *data __UNUSED__, Evas_Object *obj)
e_widget_ilist_nth_data_get(obj, sel); e_widget_ilist_nth_data_get(obj, sel);
} }
#endif
static Evas_Object * static Evas_Object *
_basic_create(E_Config_Dialog *cfd, Evas *e, E_Config_Dialog_Data *cfdata) _basic_create(E_Config_Dialog *cfd, Evas *e, E_Config_Dialog_Data *cfdata)

View File

@ -21,7 +21,8 @@ _fetch(Evry_Plugin *plugin, const char *input)
Evry_Plugin *pp; Evry_Plugin *pp;
Eina_List *l, *ll, *lp = NULL; Eina_List *l, *ll, *lp = NULL;
Evry_Item *it, *it2; Evry_Item *it, *it2;
int top_level = 0, subj_sel = 0, inp_len = 0, cnt = 0; int top_level = 0, subj_sel = 0, cnt = 0;
size_t inp_len;
Eina_List *items = NULL; Eina_List *items = NULL;
const char *context = NULL; const char *context = NULL;
char buf[128]; char buf[128];

View File

@ -1084,7 +1084,7 @@ _recentf_fetch(Evry_Plugin *plugin, const char *input)
GET_PLUGIN(p, plugin); GET_PLUGIN(p, plugin);
Evry_Item_File *file; Evry_Item_File *file;
History_Types *ht; History_Types *ht;
int len = (input ? strlen(input) : 0); size_t len = (input ? strlen(input) : 0);
IF_RELEASE(p->input); IF_RELEASE(p->input);

View File

@ -101,7 +101,7 @@ _begin(Evry_Plugin *plugin, const Evry_Item *item __UNUSED__)
static int static int
_fetch(Evry_Plugin *plugin, const char *input) _fetch(Evry_Plugin *plugin, const char *input)
{ {
int len = input ? strlen(input) : 0; size_t len = input ? strlen(input) : 0;
GET_PLUGIN(p, plugin); GET_PLUGIN(p, plugin);