diff -r 09774dfdd46b -r 2e1adbfc62af qtinternetradio/ui/src/irbaseview.cpp --- a/qtinternetradio/ui/src/irbaseview.cpp Mon Apr 19 14:01:53 2010 +0300 +++ b/qtinternetradio/ui/src/irbaseview.cpp Mon May 03 12:25:23 2010 +0300 @@ -121,6 +121,17 @@ void IRBaseView::popupNote(const QString &aNote, const HbMessageBox::MessageBoxType &aNoteType) const { - HbMessageBox note(aNote, aNoteType); - note.exec(); + switch (aNoteType) + { + case HbMessageBox::MessageTypeInformation: + HbMessageBox::information(aNote, (QObject*)NULL, NULL); + break; + + case HbMessageBox::MessageTypeWarning: + HbMessageBox::warning(aNote, (QObject*)NULL, NULL); + break; + + default: + break; + } }