aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/breakwindow.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2009-08-18 16:46:33 +0200
committerhjk <[email protected]>2009-08-18 16:47:02 +0200
commit589cc43ab190b653974700c917f6cf99428f32a4 (patch)
treeff39c4e5449cee67161f695898c38bcde9e7cc45 /src/plugins/debugger/breakwindow.cpp
parentf8300260ea6764496008123d13a4ebb0cc3692d3 (diff)
debugger: make context menus of views look more similar
Diffstat (limited to 'src/plugins/debugger/breakwindow.cpp')
-rw-r--r--src/plugins/debugger/breakwindow.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/debugger/breakwindow.cpp b/src/plugins/debugger/breakwindow.cpp
index 362ba6bc5b2..d26e6ed01f9 100644
--- a/src/plugins/debugger/breakwindow.cpp
+++ b/src/plugins/debugger/breakwindow.cpp
@@ -196,13 +196,14 @@ void BreakWindow::contextMenuEvent(QContextMenuEvent *ev)
menu.addAction(deleteAllAction);
menu.addAction(deleteByFileAction);
menu.addSeparator();
- menu.addAction(adjustColumnAction);
- menu.addAction(alwaysAdjustAction);
menu.addAction(synchronizeAction);
menu.addSeparator();
menu.addAction(breakAtFunctionAction);
menu.addAction(breakAtMainAction);
menu.addSeparator();
+ menu.addAction(adjustColumnAction);
+ menu.addAction(alwaysAdjustAction);
+ menu.addSeparator();
menu.addAction(theDebuggerAction(SettingsDialog));
QAction *act = menu.exec(ev->globalPos());