diff -r 76883296a0d5 -r 11a052f4b02e coreapplicationuis/Rfs/src/rfsHandler.cpp --- a/coreapplicationuis/Rfs/src/rfsHandler.cpp Tue Jul 06 14:26:20 2010 +0300 +++ b/coreapplicationuis/Rfs/src/rfsHandler.cpp Wed Aug 18 09:58:19 2010 +0300 @@ -191,8 +191,9 @@ CHbDeviceMessageBoxSymbian* note = CHbDeviceMessageBoxSymbian::NewL(CHbDeviceMessageBoxSymbian::EInformation); CleanupStack::PushL(note); note->SetTextL(*prompt); - note->ShowL(); - CleanupStack::PopAndDestroy(note); + //could have used show() but it is aynchronous and execution proceeds before note is seen so have used synchronous API exec() + note->ExecL(); + CleanupStack::PopAndDestroy(note); CleanupStack::PopAndDestroy( prompt );