qtinternetradio/ui/src/irbaseview.cpp
changeset 14 896e9dbc5f19
parent 5 0930554dc389
child 15 065198191975
equal deleted inserted replaced
12:608f67c22514 14:896e9dbc5f19
   133 void IRBaseView::popupNote(const QString &aNote, const HbMessageBox::MessageBoxType &aNoteType) const
   133 void IRBaseView::popupNote(const QString &aNote, const HbMessageBox::MessageBoxType &aNoteType) const
   134 {
   134 {
   135     switch (aNoteType)
   135     switch (aNoteType)
   136     {
   136     {
   137     case HbMessageBox::MessageTypeInformation:
   137     case HbMessageBox::MessageTypeInformation:
   138         HbMessageBox::information(aNote, (QObject*)NULL, NULL);
   138         HbMessageBox::information(aNote, (QObject*)NULL, NULL, HbMessageBox::Ok);
   139         break;
   139         break;
   140         
   140         
   141     case HbMessageBox::MessageTypeWarning:
   141     case HbMessageBox::MessageTypeWarning:
   142         HbMessageBox::warning(aNote, (QObject*)NULL, NULL);
   142         HbMessageBox::warning(aNote, (QObject*)NULL, NULL, HbMessageBox::Ok);
   143         break;
   143         break;
   144         
   144         
   145     default:
   145     default:
   146         break;
   146         break;
   147     }
   147     }