ui: updated text for handling non-existent project in recent projects list

This commit is contained in:
mlangkabel
2018-08-28 11:02:48 +02:00
parent d2b8b5567f
commit 0f5548f5f9
+2 -2
View File
@@ -56,9 +56,9 @@ void QtRecentProjectButton::handleButtonClick()
QMessageBox msgBox;
msgBox.setText("Missing Project File");
msgBox.setInformativeText(QString::fromStdWString(
L"Couldn't find " + m_projectFilePath.wstr() + L" in your filesystem. Delete it from this recent Proejct list?"
L"<p>Couldn't find \"" + m_projectFilePath.wstr() + L"\" on your filesystem.</p><p>Do you want to remove it from recent project list?</p>"
));
msgBox.addButton("Delete", QMessageBox::ButtonRole::YesRole);
msgBox.addButton("Remove", QMessageBox::ButtonRole::YesRole);
msgBox.addButton("Keep", QMessageBox::ButtonRole::NoRole);
msgBox.setIcon(QMessageBox::Icon::Question);
int ret = msgBox.exec();