diff -r 64e38f08e49c -r 47d84de1c893 emailservices/emailstore/message_store/server/src/MessageStoreSession.cpp --- a/emailservices/emailstore/message_store/server/src/MessageStoreSession.cpp Fri Sep 17 08:27:21 2010 +0300 +++ b/emailservices/emailstore/message_store/server/src/MessageStoreSession.cpp Mon Oct 04 00:05:37 2010 +0300 @@ -1,5 +1,5 @@ /* -* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). +* Copyright (c) 2010 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" @@ -78,7 +78,7 @@ // ========================================================================== void CSearchResult::ConstructL( const TDesC8& aPropertyBuf ) { - iPropertyBuf.Create( aPropertyBuf ); + iPropertyBuf.CreateL( aPropertyBuf ); } // ========================================================================== @@ -686,7 +686,7 @@ // ========================================================================== // FUNCTION: SendEventToObserver // ========================================================================== -void CMessageStoreSession::SendEventToObserver( TMsgStoreEvent aEvent ) +void CMessageStoreSession::SendEventToObserver( TMsgStoreEvent &aEvent ) { __LOG_ENTER( "SendEventToObserver" ) @@ -2556,11 +2556,11 @@ RBuf8 addressBuf; CleanupClosePushL( addressBuf ); - addressBuf.Create( KInitialAddressBufSize ); + addressBuf.CreateL( KInitialAddressBufSize ); RBuf8 dispNameBuf; CleanupClosePushL( dispNameBuf ); - dispNameBuf.Create( KInitialAddressBufSize ); + dispNameBuf.CreateL( KInitialAddressBufSize ); TInt position = 0; while( position < bufSize ) @@ -2571,7 +2571,7 @@ if ( addressBuf.MaxLength() < length16 ) { - addressBuf.ReAlloc( length16 ); + addressBuf.ReAllocL( length16 ); } aMessage.ReadL( 1, addressBuf, position ); @@ -2587,7 +2587,7 @@ if ( dispNameBuf.MaxLength() < length16 ) { - dispNameBuf.ReAlloc( length16 ); + dispNameBuf.ReAllocL( length16 ); } aMessage.ReadL( 1, dispNameBuf, position );