diff options
author | hjk <[email protected]> | 2010-03-04 13:18:25 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2010-03-04 13:19:18 +0100 |
commit | 98e8813ccd2f8ae037709dc7343adc956cb8b1bb (patch) | |
tree | 29849893483ace410ffacf03e3139506e5e0dc4e /src/plugins/debugger/breakwindow.cpp | |
parent | 3527195e85e889dce954297cfca7a96cce5b336b (diff) |
debugger: use the right flag to select using full paths for breakpoints
Diffstat (limited to 'src/plugins/debugger/breakwindow.cpp')
-rw-r--r-- | src/plugins/debugger/breakwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/breakwindow.cpp b/src/plugins/debugger/breakwindow.cpp index f3ee5db74b1..54f01749602 100644 --- a/src/plugins/debugger/breakwindow.cpp +++ b/src/plugins/debugger/breakwindow.cpp @@ -258,7 +258,7 @@ void BreakWindow::contextMenuEvent(QContextMenuEvent *ev) else if (act == toggleEnabledAction) setBreakpointsEnabled(si, !enabled); else if (act == pathAction) - setBreakpointsFullPath(si, !enabled); + setBreakpointsFullPath(si, !fullpath); else if (act == breakAtFunctionAction) { BreakByFunctionDialog dlg(this); if (dlg.exec()) |