From fe61cd6a9eb9c50fadcde683a3aa6096272e6720 Mon Sep 17 00:00:00 2001 From: David Schulz Date: Tue, 9 Jul 2019 10:46:09 +0200 Subject: [PATCH] Test: Fix double semicolon Change-Id: I8f858ef2345f19a0067cbfb4437cb432360e490d Reviewed-by: Christian Stenger --- src/plugins/autotest/autotestplugin.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugins/autotest/autotestplugin.cpp b/src/plugins/autotest/autotestplugin.cpp index 2a5f0fcd78f..8c687ff52a0 100644 --- a/src/plugins/autotest/autotestplugin.cpp +++ b/src/plugins/autotest/autotestplugin.cpp @@ -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));