diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/ecore/ecore_event_message_handler.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/lib/ecore/ecore_event_message_handler.c b/src/lib/ecore/ecore_event_message_handler.c index 9a6e03e006..cab87a1743 100644 --- a/src/lib/ecore/ecore_event_message_handler.c +++ b/src/lib/ecore/ecore_event_message_handler.c | |||
@@ -364,16 +364,7 @@ _ecore_event_message_handler_efl_loop_message_handler_message_call(Eo *obj, Ecor | |||
364 | if ((type == ECORE_EVENT_SIGNAL_EXIT) && (handled == 0)) | 364 | if ((type == ECORE_EVENT_SIGNAL_EXIT) && (handled == 0)) |
365 | { | 365 | { |
366 | Eo *loop = efl_provider_find(obj, EFL_LOOP_CLASS); | 366 | Eo *loop = efl_provider_find(obj, EFL_LOOP_CLASS); |
367 | 367 | if (loop) efl_loop_quit(loop, eina_value_int_init(0)); | |
368 | if (loop) | ||
369 | { | ||
370 | Eina_Value v = EINA_VALUE_EMPTY; | ||
371 | int val = 0; | ||
372 | |||
373 | eina_value_setup(&v, EINA_VALUE_TYPE_INT); | ||
374 | eina_value_set(&v, &val); | ||
375 | efl_loop_quit(loop, v); | ||
376 | } | ||
377 | } | 368 | } |
378 | } | 369 | } |
379 | 370 | ||