editor/search - fix build warnings as some of the codes were commented out.

This commit is contained in:
Daniel Juyung Seo 2014-03-01 23:46:27 +09:00
parent 06be86982c
commit 373a23745e
2 changed files with 5 additions and 5 deletions

View File

@ -864,9 +864,9 @@ edit_font_size_update(edit_data *ed, Eina_Bool msg)
}
void
edit_search(edit_data *ed, const char *word)
edit_search(edit_data *ed EINA_UNUSED, const char *word EINA_UNUSED)
{
Eina_Bool found;
// Eina_Bool found;
search_open();
// sd = search_word(sd, ed->en_edit, word, &found);
// printf("word(%s) found(%d)\n", word, found);

View File

@ -14,14 +14,14 @@ static Evas_Coord win_w = 300;
static Evas_Coord win_h = 100;
static void
win_delete_request_cb(void *data, Evas_Object *obj, void *event_info)
win_delete_request_cb(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)
{
search_data *sd = data;
//search_data *sd = data;
search_close();
}
static void
win_moved_cb(void *data, Evas_Object *obj, void *event_info)
win_moved_cb(void *data EINA_UNUSED, Evas_Object *obj, void *event_info EINA_UNUSED)
{
/* Move the window with the previous remembered position when the window is
moved by window manager first time. */