summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/watchwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/debugger/watchwindow.cpp')
-rw-r--r--src/plugins/debugger/watchwindow.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/debugger/watchwindow.cpp b/src/plugins/debugger/watchwindow.cpp
index a3df668cb6..824c032d71 100644
--- a/src/plugins/debugger/watchwindow.cpp
+++ b/src/plugins/debugger/watchwindow.cpp
@@ -29,6 +29,8 @@
#include "watchwindow.h"
+#include "debuggeractions.h"
+
#include <QtCore/QDebug>
#include <QtCore/QTimer>
@@ -106,6 +108,7 @@ void WatchWindow::contextMenuEvent(QContextMenuEvent *ev)
QAction *act4 = 0;
QAction *act5 = new QAction("Debugger properties...", &menu);
QAction *act6 = new QAction("Re-check availability of custom dumpers", &menu);
+ QAction *act7 = action(UseDumpers);
menu.addAction(act1);
menu.addAction(act2);
@@ -132,6 +135,7 @@ void WatchWindow::contextMenuEvent(QContextMenuEvent *ev)
}
menu.addSeparator();
menu.addAction(act6);
+ menu.addAction(act7);
menu.addAction(act5);
QAction *act = menu.exec(ev->globalPos());