Debugger: Compile fix

stringSettings() macro-expands internally nowadays.

Change-Id: Id702ee852b7c25b8ff7dbca0c6ada529a53a9443
Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
hjk
2016-04-15 16:45:38 +02:00
parent cfbb84a5f8
commit 2e38eec002

View File

@@ -284,7 +284,7 @@ void LldbEngine::startLldbStage2()
m_lldbProc.write("script print(dir())\n");
m_lldbProc.write("script theDumper = Dumper()\n"); // This triggers reportState("enginesetupok")
const QString commands = expand(stringSetting(GdbStartupCommands));
const QString commands = stringSetting(GdbStartupCommands);
if (!commands.isEmpty())
m_lldbProc.write(commands.toLocal8Bit());
}