Debugger: Make error warning a real sentence.

Separate the two warnings by a '. '.
This commit is contained in:
Kai Koehne
2011-01-18 13:27:00 +01:00
parent 3d76e16295
commit 211553768f
2 changed files with 2 additions and 2 deletions

View File

@@ -403,7 +403,7 @@ DEBUGGER_EXPORT ConfigurationCheck checkDebugConfiguration(ToolChainType toolCha
case ToolChain_RVCT2_ARMV6:
if (debuggerCore()->gdbBinaryForToolChain(toolChain).isEmpty()) {
result.errorMessage = msgNoBinaryForToolChain(toolChain);
result.errorMessage += msgEngineNotAvailable("Gdb");
result.errorMessage += QLatin1Char(' ') + msgEngineNotAvailable("Gdb");
result.settingsPage = GdbOptionsPage::settingsId();
}
break;