Test: Fix double semicolon

Change-Id: I8f858ef2345f19a0067cbfb4437cb432360e490d
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
David Schulz
2019-07-09 10:46:09 +02:00
parent daa2dde537
commit fe61cd6a9e

View File

@@ -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));