analyzer: Fix message for "incompatible" builds.

Task-number: QTCREATORBUG-7011
Change-Id: I49e8c26f0d4affef0a7c4372915ea1608751960c
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
hjk
2012-03-08 09:20:01 +01:00
committed by hjk
parent c956f643be
commit 3487b538c0

View File

@@ -525,10 +525,12 @@ void AnalyzerManagerPrivate::startLocalTool(IAnalyzerTool *tool)
switch (toolMode) {
case IAnalyzerTool::DebugMode:
toolModeString = tr("Debug");
break;
case IAnalyzerTool::ReleaseMode:
toolModeString = tr("Release");
case IAnalyzerTool::AnyMode:
break;
default:
QTC_CHECK(false);
}
const QString title = tr("Run %1 in %2 Mode?").arg(toolName).arg(currentMode);
const QString message = tr("<html><head/><body><p>You are trying "