summaryrefslogtreecommitdiff
path: root/src/bin/test_task_switcher.c
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2016-03-11 12:34:16 +0000
committerTom Hacohen <tom@stosb.com>2016-03-11 12:36:19 +0000
commit97ca9e387903306c01c0a7b7dcbb3f3886d03862 (patch)
treef4cad1ff36089a7b8421993fd21c7ae89e9775b3 /src/bin/test_task_switcher.c
parenta1f55ce68a0e652af38bc4b4c59ed5f8bd5029e9 (diff)
downloadelementary-97ca9e387903306c01c0a7b7dcbb3f3886d03862.tar.gz
Revert "Automatic migration to the new eo_add syntax."
This reverts commit d1a1819813d74361b25fd5c1123f7ac76be9b84f.
Diffstat (limited to 'src/bin/test_task_switcher.c')
-rw-r--r--src/bin/test_task_switcher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/test_task_switcher.c b/src/bin/test_task_switcher.c
index ec4283776..1c2b441dd 100644
--- a/src/bin/test_task_switcher.c
+++ b/src/bin/test_task_switcher.c
@@ -303,7 +303,7 @@ _app_open(const char *package)
return;
}
- eo_add(&app, ELM_APP_CLIENT_CLASS, NULL, elm_app_client_constructor(app, package));
+ app = eo_add(ELM_APP_CLIENT_CLASS, NULL, elm_app_client_constructor(eoid, package));
eo_event_callback_add(app, ELM_APP_CLIENT_EVENT_VIEW_LIST_LOADED, _view_list_update_cb, table);
eo_event_callback_add(app, ELM_APP_CLIENT_EVENT_VIEW_CREATED, _view_list_update_cb, table);
eo_event_callback_add(app, ELM_APP_CLIENT_EVENT_VIEW_DELETED, _view_list_update_cb, table);