forked from qt-creator/qt-creator
Debugger: Use some Qt5 connects
Change-Id: I03c301ae71c3747afc5d17a6f7689620e46fde62 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
@@ -2496,8 +2496,8 @@ void DebuggerPluginPrivate::extensionsInitialized()
|
||||
act = m_frameUpAction = new QAction(tr("Move to Calling Frame"), this);
|
||||
connect(act, &QAction::triggered, this, &DebuggerPluginPrivate::handleFrameUp);
|
||||
|
||||
connect(action(OperateByInstruction), SIGNAL(triggered(bool)),
|
||||
SLOT(handleOperateByInstructionTriggered(bool)));
|
||||
connect(action(OperateByInstruction), &QAction::triggered,
|
||||
this, &DebuggerPluginPrivate::handleOperateByInstructionTriggered);
|
||||
|
||||
ActionContainer *debugMenu = ActionManager::actionContainer(PE::M_DEBUG);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user