diff options
Diffstat (limited to 'src/plugins/debugger/watchwindow.h')
-rw-r--r-- | src/plugins/debugger/watchwindow.h | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/src/plugins/debugger/watchwindow.h b/src/plugins/debugger/watchwindow.h index 6210bf0e143..3651e831a36 100644 --- a/src/plugins/debugger/watchwindow.h +++ b/src/plugins/debugger/watchwindow.h @@ -30,7 +30,6 @@ #ifndef DEBUGGER_WATCHWINDOW_H #define DEBUGGER_WATCHWINDOW_H -#include "basewindow.h" #include <utils/basetreeview.h> namespace Debugger { @@ -49,7 +48,7 @@ class WatchTreeView : public Utils::BaseTreeView Q_OBJECT public: - explicit WatchTreeView(WatchType type, QWidget *parent = 0); + explicit WatchTreeView(WatchType type); WatchType type() const { return m_type; } void setModel(QAbstractItemModel *model); @@ -98,18 +97,6 @@ private: bool m_grabbing; }; -class WatchWindow : public BaseWindow -{ - Q_OBJECT - -public: - explicit WatchWindow(WatchType type) - : BaseWindow(new WatchTreeView(type)) - { - setWindowTitle(tr("Locals and Expressions")); - } -}; - } // namespace Internal } // namespace Debugger |