From f538736cfcb520faa70882912dc7d7f7cf81dace Mon Sep 17 00:00:00 2001 From: hjk <qtc-committer@nokia.com> Date: Wed, 30 Jun 2010 13:04:51 +0200 Subject: [PATCH] debugger: fix c&p error causing 'jump to line' to fail --- src/plugins/debugger/debuggerplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 579e60aa979..3abb628df66 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -1082,7 +1082,7 @@ bool DebuggerPluginPrivate::initialize(const QStringList &arguments, QString *er m_actions.jumpToLineAction1 = new QAction(tr("Jump to Line"), this); m_actions.jumpToLineAction1->setProperty(Role, RequestExecJumpToLineRole); m_actions.jumpToLineAction2 = new QAction(tr("Jump to Line"), this); - m_actions.jumpToLineAction1->setProperty(Role, RequestExecJumpToLineRole); + m_actions.jumpToLineAction2->setProperty(Role, RequestExecJumpToLineRole); m_actions.breakAction = new QAction(tr("Toggle Breakpoint"), this); -- GitLab