aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-08-15 16:52:08 +0200
committerhjk <qthjk@ovi.com>2011-08-15 16:56:52 +0200
commit4c4a8d716d15a1347a72ea9123b4d64a88a4f94b (patch)
tree6f6d39d49dbccbbfa5e68dff92b4b0973493d64b /src
parentcea012a152b127b48ab71cd3f4c2072468e34684 (diff)
Debugger: Fix "Run to Line", "Jump to Line".
Change-Id: I33d7d6e0ef2f10d9198491e0562118687726d2aa Reviewed-on: http://codereview.qt.nokia.com/2979 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/debugger/debuggerplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index b892db28ed..2e8d5d8ac9 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -928,7 +928,7 @@ public slots:
{
const QAction *action = qobject_cast<const QAction *>(sender());
QTC_ASSERT(action, return);
- const ContextData data = action->data().value<ContextData>();
+ const BreakpointMenuContextData data = action->data().value<BreakpointMenuContextData>();
currentEngine()->executeRunToLine(data);
}
@@ -936,7 +936,7 @@ public slots:
{
const QAction *action = qobject_cast<const QAction *>(sender());
QTC_ASSERT(action, return);
- const ContextData data = action->data().value<ContextData>();
+ const BreakpointMenuContextData data = action->data().value<BreakpointMenuContextData>();
currentEngine()->executeJumpToLine(data);
}