diff -r a359256acfc6 -r c8a366e56285 webengine/widgetinstaller/Src/WidgetConfigHandler.cpp --- a/webengine/widgetinstaller/Src/WidgetConfigHandler.cpp Thu Aug 27 07:44:59 2009 +0300 +++ b/webengine/widgetinstaller/Src/WidgetConfigHandler.cpp Thu Sep 24 12:53:48 2009 +0300 @@ -64,6 +64,7 @@ _LIT( KNokiaVersion, "Version" ); // optional _LIT( KNokiaMiniViewEnabled, "MiniViewEnabled" ); // optional _LIT( KBlanketPermGranted, "BlanketPermissionGranted" );// optional +_LIT( KPreInstalled, "PreInstalled" ); // optional // Apple/Nokia shared key names _LIT( KMainHTML, "MainHTML" ); // required @@ -215,6 +216,11 @@ iProperties[EPropertyDescriptionNokiaPromptNeeded].name.Set( KBlanketPermGranted ); iProperties[EPropertyDescriptionNokiaPromptNeeded].type = EWidgetPropTypeBool; iProperties[EPropertyDescriptionNokiaPromptNeeded].flags = CONFIG_NOKIA_MAY; + // + iProperties[EPropertyDescriptionNokiaPreInstalled].id = EPreInstalled; + iProperties[EPropertyDescriptionNokiaPreInstalled].name.Set( KPreInstalled ); + iProperties[EPropertyDescriptionNokiaPreInstalled].type = EWidgetPropTypeBool; + iProperties[EPropertyDescriptionNokiaPreInstalled].flags = CONFIG_NOKIA_MAY; }