Fixed wrong index for app-control
authorJihoon Chung <jihoon.chung@samsaung.com>
Mon, 12 Aug 2013 07:07:04 +0000 (16:07 +0900)
committerJihoon Chung <jihoon.chung@samsaung.com>
Mon, 12 Aug 2013 11:01:48 +0000 (20:01 +0900)
[Issue#] N/A
[Problem] N/A
[Cause] N/A
[Solution]
Data index for appcontrol isn't matched with parser.
WidgetAppControl::Disposition & AppControlInfo::Disposition
[SCMRequest] N/A

Change-Id: I311f1810700bb1308fd447a9d9d77946fd51e4e2

modules/widget_dao/include/dpl/wrt-dao-ro/common_dao_types.h

index 9537ce1..13ff04a 100644 (file)
@@ -359,8 +359,9 @@ namespace AppControlPrefix {
 struct WidgetAppControl
 {
     enum class Disposition {
-        WINDOW = 0,
-        INLINE
+        UNDEFINE = 0,
+        WINDOW   = 1,
+        INLINE   = 2
     };
 
     DPL::String src;       /* start uri */