summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/debuggeroutputwindow.cpp
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2009-03-24 14:41:15 +0100
committerhjk <qtc-committer@nokia.com>2009-03-24 16:39:30 +0100
commitc3fc03c11c5222d71d4988e1b318c7fe4b6e5619 (patch)
treeaa993ac1f5e800579fba7cf8eb05d0215158dca3 /src/plugins/debugger/debuggeroutputwindow.cpp
parent9b7274a0110712822ccbf93e1856b9a3d6e762c0 (diff)
downloadqt-creator-c3fc03c11c5222d71d4988e1b318c7fe4b6e5619.tar.gz
debugger: add shortcut to debugger properties in more context menus
Diffstat (limited to 'src/plugins/debugger/debuggeroutputwindow.cpp')
-rw-r--r--src/plugins/debugger/debuggeroutputwindow.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggeroutputwindow.cpp b/src/plugins/debugger/debuggeroutputwindow.cpp
index 74d8e8bb5e..3779921535 100644
--- a/src/plugins/debugger/debuggeroutputwindow.cpp
+++ b/src/plugins/debugger/debuggeroutputwindow.cpp
@@ -28,6 +28,7 @@
**************************************************************************/
#include "debuggeroutputwindow.h"
+#include "debuggeractions.h"
#include <QtCore/QDebug>
@@ -51,7 +52,7 @@ using namespace Find;
#endif // GDBDEBUGGERLEAN
-using Debugger::Internal::DebuggerOutputWindow;
+using namespace Debugger::Internal;
/////////////////////////////////////////////////////////////////////
//
@@ -83,6 +84,8 @@ public:
menu->addAction(m_clearContentsAction);
//menu->addAction(m_saveContentsAction);
addContextActions(menu);
+ menu->addSeparator();
+ menu->addAction(theDebuggerAction(SettingsDialog));
menu->exec(ev->globalPos());
delete menu;
}