diff -r b048e15729d6 -r 36d60d12b4af creator/engine/src/creator_log.cpp --- a/creator/engine/src/creator_log.cpp Fri Sep 03 17:11:21 2010 +0300 +++ b/creator/engine/src/creator_log.cpp Fri Sep 17 14:22:55 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 }