Remove 'declared' function that was never defined.

SVN revision: 54558
This commit is contained in:
Christopher Michael 2010-11-15 06:15:42 +00:00
parent 3e706de451
commit 4b7b3742c8
2 changed files with 6 additions and 7 deletions

View File

@ -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;

View File

@ -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);