--- a/idlehomescreen/xmluicontroller/src/aixmluiutils.cpp Thu Jan 07 12:39:41 2010 +0200
+++ b/idlehomescreen/xmluicontroller/src/aixmluiutils.cpp Mon Jan 18 20:10:36 2010 +0200
@@ -439,7 +439,7 @@
{
// Create new property value and property
CXnDomPropertyValue* value = CXnDomPropertyValue::NewL(
- aUiElement.UiEngineL()->StringPool() );
+ &aUiElement.UiEngineL()->StringPool() );
CleanupStack::PushL( value );
CXnProperty* property = CXnProperty::NewL(
@@ -1066,7 +1066,7 @@
const TDesC8& aNewValueString )
{
// Set defined property to defined node.
- CXnDomPropertyValue* newValue = CXnDomPropertyValue::NewL(aNode.UiEngineL()->StringPool());
+ CXnDomPropertyValue* newValue = CXnDomPropertyValue::NewL( &aNode.UiEngineL()->StringPool() );
CleanupStack::PushL(newValue);
newValue->SetStringValueL(CXnDomPropertyValue::EString, aNewValueString);
CXnProperty* prop = CXnProperty::NewL(aPropertyName, newValue, aNode.UiEngineL()->StringPool());