From 8bffe63fbee55636aaf1bc8d56e790abc329d96f Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Tue, 15 Nov 2011 13:34:28 +0000 Subject: [PATCH] Clouseau: Fix it to work with non-elm apps. SVN revision: 65263 --- src/lib/libclouseau.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/libclouseau.c b/src/lib/libclouseau.c index f24771d..24323c4 100644 --- a/src/lib/libclouseau.c +++ b/src/lib/libclouseau.c @@ -412,9 +412,10 @@ ecore_main_loop_begin(void) if (!_is_init) { + char *margv[] = { "clouseau" }; /* Make sure we init elementary, wouldn't be needed once we * take away the ui to another proc. */ - elm_init(0, NULL); + elm_init(1, margv); libclouseau_init(); }