idlehomescreen/xmluirendering/uiengine/src/xnnodepluginif.cpp
changeset 2 08c6ee43b396
parent 0 f72a12da539e
child 15 ff572dfe6d86
equal deleted inserted replaced
1:5315654608de 2:08c6ee43b396
   487     nameValue->SetStringValueL( CXnDomPropertyValue::EString, aTriggerName );
   487     nameValue->SetStringValueL( CXnDomPropertyValue::EString, aTriggerName );
   488 
   488 
   489     CXnProperty* name = CXnProperty::NewL(
   489     CXnProperty* name = CXnProperty::NewL(
   490         XnPropertyNames::action::trigger::KName,
   490         XnPropertyNames::action::trigger::KName,
   491         nameValue,
   491         nameValue,
   492         iNode->UiEngine()->ODT()->DomDocument().StringPool() );
   492         *iNode->UiEngine()->ODT()->DomDocument().StringPool() );
   493 
   493 
   494     CleanupStack::Pop( nameValue );
   494     CleanupStack::Pop( nameValue );
   495     CleanupStack::PushL( name );
   495     CleanupStack::PushL( name );
   496     trigger->SetPropertyL( name );
   496     trigger->SetPropertyL( name );
   497     CleanupStack::Pop( name );
   497     CleanupStack::Pop( name );
   502     indexValue->SetStringValueL( CXnDomPropertyValue::EString, aValue );
   502     indexValue->SetStringValueL( CXnDomPropertyValue::EString, aValue );
   503 
   503 
   504     CXnProperty* index = CXnProperty::NewL(
   504     CXnProperty* index = CXnProperty::NewL(
   505         aValueName,
   505         aValueName,
   506         indexValue,
   506         indexValue,
   507         iNode->UiEngine()->ODT()->DomDocument().StringPool() );
   507         *iNode->UiEngine()->ODT()->DomDocument().StringPool() );
   508 
   508 
   509     CleanupStack::Pop( indexValue );
   509     CleanupStack::Pop( indexValue );
   510     CleanupStack::PushL( index );
   510     CleanupStack::PushL( index );
   511     trigger->SetPropertyL( index );
   511     trigger->SetPropertyL( index );
   512     CleanupStack::Pop( index );
   512     CleanupStack::Pop( index );