diff -r 4b22a598b890 -r c9bf25a20c9f creator/engine/src/creator_calendar.cpp --- a/creator/engine/src/creator_calendar.cpp Thu May 27 12:52:19 2010 +0300 +++ b/creator/engine/src/creator_calendar.cpp Fri Jun 11 13:39:09 2010 +0300 @@ -340,12 +340,14 @@ return; } + const TDesC* showText = &KSavingText; TBool finished(EFalse); TBool retval(ETrue); switch(aUserData) { case ECreatorCalendarDelete: iEntriesToBeCreated = 1; + showText = &KDeletingText; finished = ETrue; break; case ECreatorCalendarStart: @@ -406,7 +408,7 @@ // add this command to command array iEngine->AppendToCommandArrayL(iCommand, NULL, iEntriesToBeCreated); // started exucuting commands - iEngine->ExecuteFirstCommandL( KSavingText ); + iEngine->ExecuteFirstCommandL( *showText ); } }