Change return value type of the appcore_ui_base_group_add function
[platform/core/appfw/app-core.git] / src / ui_base / appcore_ui_base.c
index eb14658..e3a545b 100644 (file)
@@ -624,7 +624,8 @@ EXPORT_API int appcore_ui_base_on_receive(aul_type type, bundle *b)
                return 0;
        }
 
-       if (type == AUL_TERMINATE_BGAPP && __context.state != AS_PAUSED)
+       if ((type == AUL_TERMINATE_BGAPP || type == AUL_TERMINATE_BG_INST) &&
+                       __context.state != AS_PAUSED)
                return 0;
 
        if (type == AUL_START)
@@ -649,8 +650,10 @@ EXPORT_API int appcore_ui_base_on_receive(aul_type type, bundle *b)
                break;
        case AUL_TERMINATE:
                break;
+       case AUL_TERMINATE_BG_INST:
+       case AUL_TERMINATE_INST:
        case AUL_TERMINATE_BGAPP:
-               _DBG("[APP %d] is paused. TERMINATE", getpid());
+               _DBG("[APP %d] TERMINATE", getpid());
                __context.state = AS_DYING;
                aul_status_update(STATUS_DYING);
                if (__context.ops.base.exit)
@@ -797,22 +800,29 @@ static void __group_lower()
        appcore_ui_base_group_remove();
 }
 
-EXPORT_API void appcore_ui_base_group_add()
+EXPORT_API int appcore_ui_base_group_add()
 {
        static bool attached = false;
+       int ret;
 
        _DBG("__group_attach");
        if (attached)
-               return;
+               return 0;
 
        int wid = __get_main_surface();
        if (wid == 0) {
                _ERR("window wasn't ready");
-               return;
+               return -1;
+       }
+
+       ret = aul_app_group_set_window(wid);
+       if (ret < 0) {
+               _ERR("Failed to set app group window. error(%d)", ret);
+               return ret;
        }
 
-       aul_app_group_set_window(wid);
        attached = true;
+       return 0;
 }
 
 EXPORT_API void appcore_ui_base_group_remove()