Skip to content
Snippets Groups Projects
Commit d6e2a105 authored by Alessandro Portale's avatar Alessandro Portale
Browse files

AlienDirSeparatorsOnWindows--

Reviewed-by: Trustme
parent 6492101e
No related merge requests found
......@@ -31,6 +31,7 @@
#include <QtGui/QMessageBox>
#include <QtCore/QCoreApplication>
#include <QtCore/QDir>
using namespace Core;
using namespace Core::Utils;
......@@ -44,10 +45,10 @@ QTCREATOR_UTILS_EXPORT Core::Utils::ReloadPromptAnswer
if (modified)
msg = QCoreApplication::translate("Core::Utils::reloadPrompt",
"The unsaved file %1 has been changed outside Qt Creator. Do you want to reload it and discard your changes?").arg(fileName);
"The unsaved file %1 has been changed outside Qt Creator. Do you want to reload it and discard your changes?").arg(QDir::toNativeSeparators(fileName));
else
msg = QCoreApplication::translate("Core::Utils::reloadPrompt",
"The file %1 has changed outside Qt Creator. Do you want to reload it?").arg(fileName);
"The file %1 has changed outside Qt Creator. Do you want to reload it?").arg(QDir::toNativeSeparators(fileName));
return reloadPrompt(title, msg, parent);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment