Remove duplicate connect of StepByInstruction triggered signal.

Reviewed-by: hjk
This commit is contained in:
Christian Kamm
2009-08-27 14:10:34 +02:00
parent d478231a64
commit 92d8a27178

View File

@@ -379,8 +379,6 @@ void DebuggerManager::init()
this, SLOT(nextExec())); this, SLOT(nextExec()));
connect(m_stepAction, SIGNAL(triggered()), connect(m_stepAction, SIGNAL(triggered()),
this, SLOT(stepExec())); this, SLOT(stepExec()));
connect(theDebuggerAction(StepByInstruction), SIGNAL(triggered()),
this, SLOT(stepByInstructionTriggered()));
connect(m_stepOutAction, SIGNAL(triggered()), connect(m_stepOutAction, SIGNAL(triggered()),
this, SLOT(stepOutExec())); this, SLOT(stepOutExec()));
connect(m_runToLineAction, SIGNAL(triggered()), connect(m_runToLineAction, SIGNAL(triggered()),