forked from qt-creator/qt-creator
Fix compilation.
There is no + operator that takes a QByteArray and a QString (or vice versa). Change-Id: I8734923cbbb0360bc20f9775d57801803782716f Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -123,7 +123,7 @@ void LldbEngine::runCommand(const DebuggerCommand &cmd)
|
||||
const int tok = ++currentToken();
|
||||
DebuggerCommand command = cmd;
|
||||
command.arg("token", tok);
|
||||
QByteArray token = QByteArray::number(tok);
|
||||
QString token = QString::number(tok);
|
||||
QString function = command.function + "(" + command.argsToPython() + ")";
|
||||
showMessage(token + function + '\n', LogInput);
|
||||
m_commandForToken[currentToken()] = command;
|
||||
|
||||
Reference in New Issue
Block a user