From 03e966085fbfbab6e09183925aacb7f708d77823 Mon Sep 17 00:00:00 2001 From: hjk <qtc-committer@nokia.com> Date: Tue, 29 Sep 2009 14:09:13 +0200 Subject: [PATCH] debugger: code cosmetics --- src/plugins/debugger/cdb/cdbdebugengine.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/plugins/debugger/cdb/cdbdebugengine.cpp b/src/plugins/debugger/cdb/cdbdebugengine.cpp index 2d1915fe03f..a2c8abafee6 100644 --- a/src/plugins/debugger/cdb/cdbdebugengine.cpp +++ b/src/plugins/debugger/cdb/cdbdebugengine.cpp @@ -455,9 +455,12 @@ CdbDebugEngine::CdbDebugEngine(DebuggerManager *manager, const QSharedPointer<Cd m_d(new CdbDebugEnginePrivate(manager, options, this)) { m_d->m_consoleStubProc.setMode(Core::Utils::ConsoleProcess::Suspend); - connect(&m_d->m_consoleStubProc, SIGNAL(processError(QString)), this, SLOT(slotConsoleStubError(QString))); - connect(&m_d->m_consoleStubProc, SIGNAL(processStarted()), this, SLOT(slotConsoleStubStarted())); - connect(&m_d->m_consoleStubProc, SIGNAL(wrapperStopped()), this, SLOT(slotConsoleStubTerminated())); + connect(&m_d->m_consoleStubProc, SIGNAL(processError(QString)), + this, SLOT(slotConsoleStubError(QString))); + connect(&m_d->m_consoleStubProc, SIGNAL(processStarted()), + this, SLOT(slotConsoleStubStarted())); + connect(&m_d->m_consoleStubProc, SIGNAL(wrapperStopped()), + this, SLOT(slotConsoleStubTerminated())); connect(&m_d->m_debugOutputCallBack, SIGNAL(debuggerOutput(int,QString)), manager, SLOT(showDebuggerOutput(int,QString))); connect(&m_d->m_debugOutputCallBack, SIGNAL(debuggerInputPrompt(int,QString)), -- GitLab