aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/stackwindow.h
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2015-02-26 09:34:42 +0100
committerhjk <hjk@theqtcompany.com>2015-02-26 10:02:32 +0000
commit5b8046305028f936cc00aa3e4a9a31a64f6776fe (patch)
tree3e22add4c7ad2fd6eef59dcaca89d022595f0e69 /src/plugins/debugger/stackwindow.h
parent623de07ab9cc956ee4203c9823fdc58520f4515f (diff)
Debugger: Fix 'Show Address' stack window context menu action
Change-Id: I59784fbb304882f88538800c4094b8680cb379f8 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
Diffstat (limited to 'src/plugins/debugger/stackwindow.h')
-rw-r--r--src/plugins/debugger/stackwindow.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/plugins/debugger/stackwindow.h b/src/plugins/debugger/stackwindow.h
index c8f16ee3c4..af637ac3b9 100644
--- a/src/plugins/debugger/stackwindow.h
+++ b/src/plugins/debugger/stackwindow.h
@@ -38,19 +38,16 @@ namespace Internal {
class StackTreeView : public Utils::BaseTreeView
{
- Q_OBJECT
-
public:
StackTreeView();
-private slots:
- void showAddressColumn(bool on);
- void reloadFullStack();
-
private:
void rowActivated(const QModelIndex &index);
void setModel(QAbstractItemModel *model);
void contextMenuEvent(QContextMenuEvent *ev);
+
+ void showAddressColumn(bool on);
+ void reloadFullStack();
void copyContentsToClipboard();
};