summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/plugins/debugger/cdb/cdbengine.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp
index 54ce5c3857..e9c165ce2c 100644
--- a/src/plugins/debugger/cdb/cdbengine.cpp
+++ b/src/plugins/debugger/cdb/cdbengine.cpp
@@ -517,9 +517,11 @@ bool CdbEngine::launchCDB(const DebuggerRunParameters &sp, QString *errorMessage
m_wow64State = noWow64Stack;
const QFileInfo extensionFi(CdbEngine::extensionLibraryName(cdbIs64Bit));
if (!extensionFi.isFile()) {
- *errorMessage = QString("Internal error: The extension %1 cannot be found.\n"
- "If you build Qt Creator from sources, check out "
- "https://code.qt.io/cgit/qt-creator/binary-artifacts.git/.").
+ *errorMessage = tr("Internal error: The extension %1 cannot be found.\n"
+ "If you have updated Qt Creator via Maintenance Tool you may "
+ "need to rerun the Tool and select \"Add or remove components\""
+ "and then select the\n"
+ "Qt > Tools > Qt Creator > Qt Creator CDB Debugger Support component.").
arg(QDir::toNativeSeparators(extensionFi.absoluteFilePath()));
return false;
}