diff --git a/src/plugins/debugger/gdbengine.cpp b/src/plugins/debugger/gdbengine.cpp index e6717fcbc00ba21357b13970f5cf1d82cb805e63..f1fea3104eb3075b79871d6b331e85ec8490a8c6 100644 --- a/src/plugins/debugger/gdbengine.cpp +++ b/src/plugins/debugger/gdbengine.cpp @@ -857,7 +857,6 @@ void GdbEngine::handleResult(const GdbResultRecord & record, int type, void GdbEngine::executeDebuggerCommand(const QString &command) { - //createGdbProcessIfNeeded(); if (m_gdbProc.state() == QProcess::NotRunning) { debugMessage("NO GDB PROCESS RUNNING, PLAIN CMD IGNORED: " + command); return; @@ -867,7 +866,6 @@ void GdbEngine::executeDebuggerCommand(const QString &command) cmd.command = command; cmd.type = -1; - emit gdbInputAvailable(QString(), cmd.command); m_gdbProc.write(cmd.command.toLatin1() + "\r\n"); }