| 3495 | } |
| 3496 | |
| 3497 | UIMessageBox* App::errorMsgBox( const String& msg ) { |
| 3498 | UIMessageBox* msgBox = UIMessageBox::New( UIMessageBox::OK, msg ); |
| 3499 | msgBox->setTitle( i18n( "error", "Error" ) ); |
| 3500 | msgBox->showWhenReady(); |
| 3501 | return msgBox; |
| 3502 | } |
| 3503 | |
| 3504 | UIMessageBox* App::fileAlreadyExistsMsgBox() { |
| 3505 | return errorMsgBox( i18n( "file_already_exists", "File already exists!" ) ); |
no test coverage detected