diff -r dcf0eedfc1a3 -r d189ee25cf9d emailservices/emailstore/message_store/server/src/ContainerStoreSearchHandler.cpp --- a/emailservices/emailstore/message_store/server/src/ContainerStoreSearchHandler.cpp Thu Aug 19 09:38:05 2010 +0300 +++ b/emailservices/emailstore/message_store/server/src/ContainerStoreSearchHandler.cpp Tue Aug 31 15:04:17 2010 +0300 @@ -29,7 +29,7 @@ #include "MsgStoreSortResultRowSet.h" #include "PropertiesSerializer.h" // -#include "msgstorepropertykeys.h" +#include "MsgStorePropertyKeys.h" // // ========= @@ -274,13 +274,13 @@ iFolderIds.Reset(); for( TInt i = 0 ; i < aFolderIds.Count() ; i++ ) { - iFolderIds.Append( aFolderIds[i] ); + iFolderIds.AppendL( aFolderIds[i] ); } iPropertyNames.ResetAndDestroy(); for ( TInt i = 0 ; i < aPropertyNames.Count() ; i++ ) { - iPropertyNames.Append( aPropertyNames[i] ); + iPropertyNames.AppendL( aPropertyNames[i] ); } aPropertyNames.Reset(); @@ -466,7 +466,7 @@ __LOG_WRITE_FORMAT1_INFO( "search string =%S", &searchStringPtr ); HBufC* pattern = HBufC::NewL( searchString->Length() + 2 ); - aSearchPatterns.Append( pattern ); + aSearchPatterns.AppendL( pattern ); TPtr seartStringPrt( pattern->Des() ); //we are using MatchC(), so we need to add * to the start and end of the search pattern