From 4e2030607818d83b4e5987df2d889f64f8dce3b3 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Sun, 17 Jan 2016 17:03:56 +1000 Subject: Unify the message sending code a bit. --- src/extantz/extantz.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/extantz') diff --git a/src/extantz/extantz.c b/src/extantz/extantz.c index 840dfec..f9b638a 100644 --- a/src/extantz/extantz.c +++ b/src/extantz/extantz.c @@ -143,7 +143,7 @@ static void _onWorldClick(void *data, Evas *e EINA_UNUSED, Evas_Object *o, void // CUBE_UUID.events.touch_start(1), but we just make one up for now. snprintf(SID, sizeof(SID), FAKE_UUID); - sendForth(ourGlobals.server, SID, "events.touch_start(1)"); + send2(ourGlobals.server, SID, "events.touch_start(1)"); } } } @@ -567,7 +567,7 @@ static Eina_Bool _makeMess(void *data) ecore_job_add((Ecore_Cb) _makeLove, ourGlobals); // ecore_timer_add(0.1, _makeLove, ourGlobals); - ourGlobals->LSLGuiMess = GuiLuaLoad("LSLGuiMess", ourGlobals->mainWindow, ourGlobals->world); +// ourGlobals->LSLGuiMess = GuiLuaLoad("LSLGuiMess", ourGlobals->mainWindow, ourGlobals->world); return ECORE_CALLBACK_CANCEL; } @@ -615,7 +615,7 @@ static Eina_Bool _makePurkle(void *data) woMan_add(ourGlobals); ourGlobals->purkle = GuiLuaLoad("purkle", ourGlobals->mainWindow, ourGlobals->world); -// ourGlobals->LSLGuiMess = GuiLuaLoad("LSLGuiMess", ourGlobals->mainWindow, ourGlobals->world); + ourGlobals->LSLGuiMess = GuiLuaLoad("LSLGuiMess", ourGlobals->mainWindow, ourGlobals->world); // ourGlobals->files = filesAdd(ourGlobals, (char *) prefix_data_get(), EINA_TRUE, EINA_FALSE); // Gotta do this after adding the windows, otherwise the menu renders under the window. -- cgit v1.1