diff -r d45b74d3fb20 -r ea2cef07f9fe kernel/eka/include/e32base.inl --- a/kernel/eka/include/e32base.inl Tue Aug 31 11:40:45 2010 +0100 +++ b/kernel/eka/include/e32base.inl Tue Sep 14 15:52:42 2010 +0100 @@ -2970,21 +2970,7 @@ // Class TCleanupItem -inline TCleanupItem::TCleanupItem(TCleanupOperation anOperation) - : iOperation(anOperation) -/** -Constructs the object with a cleanup operation. - -@param anOperation A cleanup operation which will be invoked by the pop and - destroy action resulting from a subsequent call to - CleanupStack::PopAndDestroy(). -*/ - {} - - - - -inline TCleanupItem::TCleanupItem(TCleanupOperation anOperation,TAny *aPtr) +inline TCleanupItem::TCleanupItem(TCleanupOperation anOperation, TAny *aPtr) : iOperation(anOperation), iPtr(aPtr) /** Constructs the object with a cleanup operation and a pointer to the object @@ -2995,7 +2981,7 @@ CleanupStack::PopAndDestroy(). @param aPtr A pointer to an object which is the target of the - cleanup operation. + cleanup operation. Defaults to NULL if not supplied. */ {}