debugger: remove unneeded stale connections

This commit is contained in:
hjk
2010-06-14 18:24:06 +02:00
parent 9f7e9dc0ae
commit bc65bb2897

View File

@@ -151,11 +151,6 @@ bool CdbDebugEnginePrivate::init(QString *errorMessage)
return false; return false;
CdbDebugOutput *output = new CdbDebugOutput(m_engine); CdbDebugOutput *output = new CdbDebugOutput(m_engine);
setDebugOutput(DebugOutputBasePtr(output)); setDebugOutput(DebugOutputBasePtr(output));
connect(output, SIGNAL(debuggerOutput(int,QString)),
manager(), SLOT(showDebuggerOutput(int,QString)));
connect(output, SIGNAL(debuggerInputPrompt(int,QString)),
manager(), SLOT(showDebuggerInput(int,QString)));
setDebugEventCallback(DebugEventCallbackBasePtr(new CdbDebugEventCallback(m_engine))); setDebugEventCallback(DebugEventCallbackBasePtr(new CdbDebugEventCallback(m_engine)));
updateCodeLevel(); updateCodeLevel();