Fix bug about the update requested event 39/111839/1
authorHwankyu Jhun <h.jhun@samsung.com>
Tue, 24 Jan 2017 09:11:57 +0000 (18:11 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Tue, 24 Jan 2017 09:12:32 +0000 (18:12 +0900)
Change-Id: I4a4d49883071e41eacfd5c74e77b98cd47a8f3cc
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/app_main.c

index 9862ba8..fc57921 100755 (executable)
@@ -891,7 +891,7 @@ int ui_app_add_event_handler(app_event_handler_h *event_handler, app_event_type_
        if (event_handler == NULL || callback == NULL)
                return app_error(APP_ERROR_INVALID_PARAMETER, __FUNCTION__, "null parameter");
 
-       if (event_type < APP_EVENT_LOW_MEMORY || event_type > APP_EVENT_SUSPENDED_STATE_CHANGED)
+       if (event_type < APP_EVENT_LOW_MEMORY || event_type > APP_EVENT_UPDATE_REQUESTED)
                return app_error(APP_ERROR_INVALID_PARAMETER, __FUNCTION__, "invalid event type");
 
        EINA_LIST_FOREACH(handler_list[event_type], l_itr, handler) {
@@ -933,7 +933,7 @@ int ui_app_remove_event_handler(app_event_handler_h event_handler)
        }
 
        type = event_handler->type;
-       if (type < APP_EVENT_LOW_MEMORY || type > APP_EVENT_SUSPENDED_STATE_CHANGED)
+       if (type < APP_EVENT_LOW_MEMORY || type > APP_EVENT_UPDATE_REQUESTED)
                return app_error(APP_ERROR_INVALID_PARAMETER, __FUNCTION__, "invalid handler");
 
        EINA_LIST_FOREACH_SAFE(handler_list[type], l_itr, l_next, handler) {