From: Young Ik Cho Date: Mon, 10 Jun 2013 06:04:26 +0000 (+0900) Subject: correct app type for service app X-Git-Tag: accepted/tizen/20130912.081851^2~252^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=319b5894373965aeef58388c1036796f0578e900;p=platform%2Fframework%2Fnative%2Fappfw.git correct app type for service app Change-Id: I6b151b5d1e3d69a874925e2ce2f7c5ba95ddda95 Signed-off-by: Young Ik Cho --- diff --git a/src/app/FApp_AppInfo.cpp b/src/app/FApp_AppInfo.cpp index fa5626c..9f44c33 100644 --- a/src/app/FApp_AppInfo.cpp +++ b/src/app/FApp_AppInfo.cpp @@ -89,7 +89,7 @@ const char TYPE_FILE_PATH[] = "info/type.info"; _AppInfo::_AppInfo(void) : __appState(TERMINATED) - , __appType(_APP_TYPE_UI_APP) + , __appType(_APP_TYPE_NONE) , __appRootDirFd(-1) , __appHandlerType(_APP_HANDLER_NONE) , __parentWindowHandle(-1) diff --git a/src/app/inc/FApp_Types.h b/src/app/inc/FApp_Types.h index 5d71f6b..16c5b4d 100644 --- a/src/app/inc/FApp_Types.h +++ b/src/app/inc/FApp_Types.h @@ -43,6 +43,7 @@ namespace Tizen { namespace App */ enum _AppType { + _APP_TYPE_NONE = 0x00, /**< Invalid %App type */ _APP_TYPE_UI_APP = 0x01, /**< %UiApp type */ _APP_TYPE_SERVICE_APP = 0x02, /**< %ServiceApp type */ _APP_TYPE_IME_APP = 0x10, /**< %ImeApp type */