forked from qt-creator/qt-creator
Test: Fix double semicolon
Change-Id: I8f858ef2345f19a0067cbfb4437cb432360e490d Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -210,11 +210,10 @@ void AutotestPlugin::extensionsInitialized()
|
||||
contextMenu->addSeparator();
|
||||
contextMenu->addAction(command);
|
||||
|
||||
action = new QAction(tr("&Debug Test Under Cursor"), this);;
|
||||
action = new QAction(tr("&Debug Test Under Cursor"), this);
|
||||
action->setEnabled(false);
|
||||
action->setIcon(ProjectExplorer::Icons::DEBUG_START_SMALL.icon());
|
||||
|
||||
|
||||
command = ActionManager::registerAction(action, Constants::ACTION_RUN_DBG_UCURSOR);
|
||||
connect(action, &QAction::triggered, std::bind(&AutotestPlugin::onRunUnderCursorTriggered, this,
|
||||
TestRunMode::Debug));
|
||||
|
||||
Reference in New Issue
Block a user