diff -r 99ad1390cd33 -r c499df2dbb33 ui/commandhandlers/commandhandlerbase/src/glxmpxcommandhandler.cpp --- a/ui/commandhandlers/commandhandlerbase/src/glxmpxcommandhandler.cpp Fri Apr 16 14:58:46 2010 +0300 +++ b/ui/commandhandlers/commandhandlerbase/src/glxmpxcommandhandler.cpp Mon May 03 12:31:32 2010 +0300 @@ -32,6 +32,7 @@ #include #include +#include #include #include #include "OstTraceDefinitions.h" @@ -365,9 +366,7 @@ QString qtText = QString::fromUtf16(text.Ptr(), text.Length()); - HbMessageBox box(HbMessageBox::MessageTypeInformation); - box.setText(qtText); - box.exec(); + HbNotificationDialog::launchDialog(qtText); CleanupStack::PopAndDestroy(textresolver); OstTraceFunctionExit0( GLXMPXCOMMANDHANDLER_HANDLEERRORL_EXIT ); } @@ -377,7 +376,7 @@ QString displayText = CompletionTextL(); if (!displayText.isNull()) { - HbMessageBox::information(displayText); + HbNotificationDialog::launchDialog(displayText); } }