--- a/connectivitymodules/SeCon/wbxml/conmlhandler/inc/sconxmlstack.inl Fri Mar 19 09:27:26 2010 +0200
+++ b/connectivitymodules/SeCon/wbxml/conmlhandler/inc/sconxmlstack.inl Fri Apr 16 14:53:26 2010 +0300
@@ -43,7 +43,7 @@
CXMLStack<T>* self = new (ELeave) CXMLStack<T>();
CleanupStack::PushL(self);
self->iStack = new (ELeave) RPointerArray<T>();
- CleanupStack::Pop(); // self
+ CleanupStack::Pop(self);
return self;
}
@@ -69,9 +69,9 @@
// ------------------------------------------------------------------------------------------------
template<class T>
-inline void CXMLStack<T>::Push( T* aItem )
+inline void CXMLStack<T>::PushL( T* aItem )
{
- iStack->Append(aItem);
+ iStack->AppendL(aItem);
}
// ------------------------------------------------------------------------------------------------