aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/extantz/woMan.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/extantz/woMan.c')
-rw-r--r--src/extantz/woMan.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/extantz/woMan.c b/src/extantz/woMan.c
index 0a3456b..fe2e3f2 100644
--- a/src/extantz/woMan.c
+++ b/src/extantz/woMan.c
@@ -151,15 +151,15 @@ static void _grid_sel_cb(void *data, Evas_Object *obj, void *event_info)
151} 151}
152 152
153 153
154fangWin *woMan_add(globals *ourGlobals) 154winFang *woMan_add(globals *ourGlobals)
155{ 155{
156 fangWin *me; 156 winFang *me;
157 Evas_Object *bx, *bt, *nf, *tab, *tb, *gridList, *viewerList, *menu; 157 Evas_Object *bx, *bt, *nf, *tab, *tb, *gridList, *viewerList, *menu;
158 Elm_Object_Item *tb_it, *menu_it, *tab_it; 158 Elm_Object_Item *tb_it, *menu_it, *tab_it;
159 char buf[PATH_MAX]; 159 char buf[PATH_MAX];
160 int i; 160 int i;
161 161
162 me = fang_win_add(ourGlobals); 162 me = winFangAdd(ourGlobals);
163 163
164 bx = elm_box_add(me->win); 164 bx = elm_box_add(me->win);
165 elm_win_resize_object_add(me->win, bx); 165 elm_win_resize_object_add(me->win, bx);
@@ -286,6 +286,6 @@ fangWin *woMan_add(globals *ourGlobals)
286 eo_unref(bt); 286 eo_unref(bt);
287 evas_object_show(bx); 287 evas_object_show(bx);
288 288
289 fang_win_complete(ourGlobals, me, 30, 30, ourGlobals->win_w / 3, ourGlobals->win_h / 3); 289 winFangComplete(ourGlobals, me, 30, 30, ourGlobals->win_w / 3, ourGlobals->win_h / 3);
290 return me; 290 return me;
291} 291}