aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/extantz/woMan.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-05-05 03:48:09 +1000
committerDavid Walter Seikel2014-05-05 03:48:09 +1000
commitab2fb9f9c5d16f60847225608a9b21156659d210 (patch)
treefa2d81082cc7074a96e56bb1b83bd73ff06d6086 /src/extantz/woMan.c
parentMerge the window handle creation code, and add proper hiding for them. (diff)
downloadSledjHamr-ab2fb9f9c5d16f60847225608a9b21156659d210.zip
SledjHamr-ab2fb9f9c5d16f60847225608a9b21156659d210.tar.gz
SledjHamr-ab2fb9f9c5d16f60847225608a9b21156659d210.tar.bz2
SledjHamr-ab2fb9f9c5d16f60847225608a9b21156659d210.tar.xz
winFang no longer depends on ourGlobals.
Diffstat (limited to 'src/extantz/woMan.c')
-rw-r--r--src/extantz/woMan.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/extantz/woMan.c b/src/extantz/woMan.c
index fe2e3f2..b5a4f50 100644
--- a/src/extantz/woMan.c
+++ b/src/extantz/woMan.c
@@ -159,7 +159,8 @@ winFang *woMan_add(globals *ourGlobals)
159 char buf[PATH_MAX]; 159 char buf[PATH_MAX];
160 int i; 160 int i;
161 161
162 me = winFangAdd(ourGlobals); 162 me = winFangAdd(ourGlobals->win);
163 eina_clist_add_head(&ourGlobals->winFangs, &me->node);
163 164
164 bx = elm_box_add(me->win); 165 bx = elm_box_add(me->win);
165 elm_win_resize_object_add(me->win, bx); 166 elm_win_resize_object_add(me->win, bx);
@@ -286,6 +287,6 @@ winFang *woMan_add(globals *ourGlobals)
286 eo_unref(bt); 287 eo_unref(bt);
287 evas_object_show(bx); 288 evas_object_show(bx);
288 289
289 winFangComplete(ourGlobals, me, 30, 30, ourGlobals->win_w / 3, ourGlobals->win_h / 3); 290 winFangComplete(me, 30, 30, ourGlobals->win_w / 3, ourGlobals->win_h / 3);
290 return me; 291 return me;
291} 292}