Fix bug about the update requested event
[platform/core/api/application.git] / 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) {