summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2015-04-29 16:57:23 -0400
committerMike Blumenkrantz <zmike@osg.samsung.com>2015-06-22 14:56:27 -0400
commit35de0d0c0c2b58912fb978811776b97d26fd60a0 (patch)
tree9a6d68f86e5b741da1ab81321b7275637bbb8850
parentd68713e7eae1e679bfce8c8297588c50d4bf7223 (diff)
downloadenlightenment-devs/discomfitor/xwl.tar.gz
ecore-x fd testdevs/discomfitor/xwl
-rw-r--r--src/modules/xwayland/e_mod_main.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/modules/xwayland/e_mod_main.c b/src/modules/xwayland/e_mod_main.c
index 2013607788..ef0c06f068 100644
--- a/src/modules/xwayland/e_mod_main.c
+++ b/src/modules/xwayland/e_mod_main.c
@@ -252,6 +252,7 @@ static Eina_Bool
_cb_signal_event(void *data EINA_UNUSED, int type EINA_UNUSED, void *event)
{
Ecore_Event_Signal_User *ev;
+ char buf[128];
ev = event;
if (ev->number != 1) return ECORE_CALLBACK_RENEW;
@@ -260,13 +261,8 @@ _cb_signal_event(void *data EINA_UNUSED, int type EINA_UNUSED, void *event)
* initialized. */
DBG("XWayland Finished Init");
-
- /* TODO: create "window manager" process */
-
- /* TODO: NB:
- *
- * Weston creates a smaller window manager process here.
- * We Maybe able to just do e_comp_x_init, but will have to test that */
+ snprintf(buf, sizeof(buf), ":%d", exs->disp);
+ assert(ecore_x_init(buf));
return ECORE_CALLBACK_CANCEL;
}