trim: newlines.

This commit is contained in:
Alastair Poole 2021-01-26 21:28:05 +00:00
parent 16798f2215
commit 9b76cca1bd
3 changed files with 2 additions and 7 deletions

View File

@ -432,7 +432,6 @@ evisum_ui_main_menu_create(Ui *ui, Evas_Object *parent, Evas_Object *obj)
evas_object_move(o, ox + (ow / 2), oy + oh);
evas_object_show(o);
if (parent != ui->proc.win) return o;
fr = elm_frame_add(o);

View File

@ -7,5 +7,4 @@
void
ui_mem_win_add(Ui *ui);
#endif

View File

@ -281,14 +281,12 @@ _pb_format_free_cb(char *str)
#endif
static Evas_Object *
_item_create(Evas_Object *parent)
_item_create(Evas_Object *obj)
{
Evas_Object *obj, *tbl, *lb, *ic, *rec;
Evas_Object *tbl, *lb, *ic, *rec;
Evas_Object *hbx, *pb;
int i = 0;
obj = parent;
tbl = elm_table_add(obj);
evas_object_size_hint_align_set(tbl, FILL, 0);
evas_object_size_hint_weight_set(tbl, EXPAND, EXPAND);
@ -1247,7 +1245,6 @@ _ui_content_system_add(Ui_Data *pd, Evas_Object *parent)
Ui *ui = pd->ui;
int i = 0;
tbl = elm_table_add(parent);
evas_object_size_hint_weight_set(tbl, EXPAND, EXPAND);
evas_object_size_hint_align_set(tbl, FILL, FILL);