diff -r da3ec8478e66 -r 9347c563e054 creator/engine/src/creator_log.cpp --- a/creator/engine/src/creator_log.cpp Fri Sep 17 08:29:47 2010 +0300 +++ b/creator/engine/src/creator_log.cpp Mon Oct 04 00:18:03 2010 +0300 @@ -259,7 +259,7 @@ // id has been generated, store it for being able to delete // entries created only with Creator - iEntryIds.Append( iLogEvent->Id() ); + TRAP_IGNORE( iEntryIds.AppendL( iLogEvent->Id() ) ); return iStatus.Int(); // should be KErrNone if writing was succesful } @@ -344,7 +344,7 @@ // id has been generated, store it for being able to delete // entries created only with Creator - iEntryIds.Append( iLogEvent->Id() ); + TRAP_IGNORE( iEntryIds.AppendL( iLogEvent->Id() ) ); return iStatus.Int(); // should be KErrNone if writing was succesful } @@ -431,7 +431,7 @@ // id has been generated, store it for being able to delete // only entries created with Creator - iEntryIds.Append( iLogEvent->Id() ); + TRAP_IGNORE( iEntryIds.AppendL( iLogEvent->Id() ) ); return iStatus.Int(); // should be KErrNone if writing was succesful }