webengine/widgetinstaller/Src/WidgetBackupRegistryXml.cpp
changeset 11 c8a366e56285
parent 10 a359256acfc6
child 15 60c5402cb945
--- a/webengine/widgetinstaller/Src/WidgetBackupRegistryXml.cpp	Thu Aug 27 07:44:59 2009 +0300
+++ b/webengine/widgetinstaller/Src/WidgetBackupRegistryXml.cpp	Thu Sep 24 12:53:48 2009 +0300
@@ -43,6 +43,7 @@
 _LIT( KNokiaWidget,          "NokiaWidget" );
 _LIT( KMiniViewEnabled,      "MiniViewEnabled" );
 _LIT( KBlanketPermGranted,   "BlanketPermissionGranted" );         // optional
+_LIT( KPreInstalled,         "PreInstalled" );                     // optional
 
 // ============================================================================
 // CWidgetBackupRegistryXml::NewL()
@@ -181,6 +182,11 @@
     property.name.Set( KBlanketPermGranted );
     property.type = EWidgetPropTypeInt;
     iProperties.AppendL(property);
+    //
+    property.id = EPreInstalled;
+    property.name.Set( KPreInstalled );
+    property.type = EWidgetPropTypeInt;
+    iProperties.AppendL(property);
     }
 
 // ============================================================================