meetingrequest/mragnversit2/inc/esmrcleanuppointerarray.inl
branchRCL_3
changeset 16 b5fbb9b25d57
parent 0 8466d47a6819
--- a/meetingrequest/mragnversit2/inc/esmrcleanuppointerarray.inl	Tue Apr 27 16:20:14 2010 +0300
+++ b/meetingrequest/mragnversit2/inc/esmrcleanuppointerarray.inl	Tue May 11 15:57:15 2010 +0300
@@ -1,5 +1,5 @@
 /*
-* Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). 
+* Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies).
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of "Eclipse Public License v1.0"
@@ -12,7 +12,7 @@
 * Contributors:
 *
 * Description:  A class for simplifying cleanup of RPointerArrays
-*     
+*
 *
 */
 
@@ -23,19 +23,19 @@
 @param aRef The RPointerArray to be cleaned up.
 @internalTechnology
 */
-template <class T>	
+template <class T>
 inline void TCleanupPointerArray<T>::PushL(T& aRef)
 	{
 	CleanupStack::PushL(TCleanupItem(&ResetAndDestroy, &aRef));
 	}
-	
+
 /**
 Takes a pointer to an RPointerArray and calls ResetAndDestroy on it.
 @param aPtr The RPointerArray
 @internalTechnology
 */
 template <class T>
-inline void TCleanupPointerArray<class T>::ResetAndDestroy(TAny* aPtr)
+inline void TCleanupPointerArray<T>::ResetAndDestroy(TAny* aPtr)
 	{
 	reinterpret_cast<T *>(aPtr)->ResetAndDestroy();
 	}
@@ -52,4 +52,4 @@
 	TCleanupPointerArray<T>::PushL(aRef);
 	}
 
-// End of file.
\ No newline at end of file
+// End of file.