aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/autotestplugin.cpp
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@qt.io>2019-07-09 10:46:09 +0200
committerDavid Schulz <david.schulz@qt.io>2019-07-10 05:49:16 +0000
commitfe61cd6a9eb9c50fadcde683a3aa6096272e6720 (patch)
treed1733183679a6b3185608be24a716d88c785473f /src/plugins/autotest/autotestplugin.cpp
parentdaa2dde537d2ad2578d28c9ac51fd35b49ad97d9 (diff)
Test: Fix double semicolon
Change-Id: I8f858ef2345f19a0067cbfb4437cb432360e490d Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/autotest/autotestplugin.cpp')
-rw-r--r--src/plugins/autotest/autotestplugin.cpp3
1 files changed, 1 insertions, 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));