no frames required there...

SVN revision: 46995
This commit is contained in:
Gustavo Sverzut Barbieri 2010-03-08 13:02:01 +00:00
parent b9ee48ba99
commit c0430f9e9d
1 changed files with 3 additions and 5 deletions

View File

@ -108,14 +108,12 @@ _free_data(E_Config_Dialog *cfd __UNUSED__, E_Config_Dialog_Data *cfdata)
static Evas_Object *
_basic_create_widgets(E_Config_Dialog *cfd __UNUSED__, Evas *evas, E_Config_Dialog_Data *cfdata)
{
Evas_Object *o, *of, *ob;
Evas_Object *o, *ob;
o = e_widget_list_add(evas, 0, 0);
of = e_widget_framelist_add(evas, _("Basic Settings"), 0);
ob = e_widget_check_add(evas, _("Show alert when battery is low"),
ob = e_widget_check_add(evas, _("Show alert when battery is low"),
&(cfdata->show_alert));
e_widget_framelist_object_append(of, ob);
e_widget_list_object_append(o, of, 1, 0, 0.5);
e_widget_list_object_append(o, ob, 1, 0, 0.5);
return o;
}