Fix title of IO error msg box

This commit is contained in:
Martchus 2016-06-14 23:49:42 +02:00
parent 2518309608
commit 92c03f03bf
1 changed files with 1 additions and 1 deletions

View File

@ -829,7 +829,7 @@ void TagEditorWidget::showFile(char result)
auto msgBox = new QMessageBox(this);
msgBox->setIcon(QMessageBox::Critical);
msgBox->setAttribute(Qt::WA_DeleteOnClose, true);
msgBox->setWindowTitle(tr("Opening file - %1").arg(windowTitle()));
msgBox->setWindowTitle(tr("Opening file - %1").arg(QCoreApplication::applicationName()));
msgBox->setText(statusMsg);
msgBox->setInformativeText(tr("Opening file: ") + m_currentPath);
msgBox->show();