From 4b7b3742c8fe0bf6b8a50e9371bc00151646a835 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Mon, 15 Nov 2010 06:15:42 +0000 Subject: [PATCH] Remove 'declared' function that was never defined. SVN revision: 54558 --- src/bin/e_border.c | 8 ++++---- src/bin/e_int_config_modules.c | 5 ++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/bin/e_border.c b/src/bin/e_border.c index 452b02158..3f427f572 100644 --- a/src/bin/e_border.c +++ b/src/bin/e_border.c @@ -120,9 +120,9 @@ static Eina_List *borders = NULL; static Eina_Hash *borders_hash = NULL; static E_Border *focused = NULL; -static E_Border *resize = NULL; -static E_Border *move = NULL; -static E_Drag *drag_border = NULL; +static E_Border *resize = NULL; +static E_Border *move = NULL; +static E_Drag *drag_border = NULL; static int grabbed = 0; @@ -130,7 +130,7 @@ static Eina_List *focus_stack = NULL; static Eina_List *raise_stack = NULL; static Ecore_X_Randr_Screen_Size screen_size = { -1, -1 }; -static int screen_size_index = -1; +static int screen_size_index = -1; static int focus_track_frozen = 0; diff --git a/src/bin/e_int_config_modules.c b/src/bin/e_int_config_modules.c index b86c0b71e..d516cf5d2 100644 --- a/src/bin/e_int_config_modules.c +++ b/src/bin/e_int_config_modules.c @@ -64,7 +64,6 @@ static const CFTypes _types[] = /* local function protos */ static void _cftype_free(CFType *cft); -static void _widget_list_populate(E_Config_Dialog_Data *cfdata); static void _widget_list_selection_changed(void *data, Evas_Object *obj __UNUSED__); static void *_create_data(E_Config_Dialog *cfd); @@ -170,7 +169,8 @@ _basic_create(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data *cfdata) if (mw < (200 * e_scale)) mw = 200 * e_scale; if (mh < (120 * e_scale)) mh = 120 * e_scale; e_widget_size_min_set(cfdata->l_modules, mw, mh); - e_widget_on_change_hook_set(cfdata->l_modules, _widget_list_selection_changed, cfdata); + e_widget_on_change_hook_set(cfdata->l_modules, + _widget_list_selection_changed, cfdata); e_widget_table_object_append(of, cfdata->l_modules, 0, 1, 2, 1, 1, 1, 1, 1); ol = e_widget_button_add(evas, _("Load"), NULL, _btn_cb_load, cfdata, NULL); @@ -575,7 +575,6 @@ _widget_list_item_selected_postponed(void *data) eina_list_append(cfdata->selected.unloaded, cfm); unloaded++; } - } e_widget_disabled_set(cfdata->b_load, !unloaded);