diff options
author | hjk <[email protected]> | 2009-10-01 11:22:44 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2009-10-01 11:42:04 +0200 |
commit | ccd37a6655ed1d840a553902120cdcf3e2119518 (patch) | |
tree | 860615fade6d7a8868e84704a82e27dc3b2b1daf /src/plugins/debugger/stackhandler.h | |
parent | d9d39ab218a51dc036f842e2a93bf4ade68924c8 (diff) |
debugger: make 'address column' in stack and breakpoint view optional
Diffstat (limited to 'src/plugins/debugger/stackhandler.h')
-rw-r--r-- | src/plugins/debugger/stackhandler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/stackhandler.h b/src/plugins/debugger/stackhandler.h index 3fee2a5f872..7db40a263b3 100644 --- a/src/plugins/debugger/stackhandler.h +++ b/src/plugins/debugger/stackhandler.h @@ -32,7 +32,7 @@ #include "stackframe.h" -#include <QtCore/QAbstractTableModel> +#include <QtCore/QAbstractItemModel> #include <QtCore/QObject> #include <QtGui/QIcon> @@ -72,7 +72,7 @@ private: int rowCount(const QModelIndex &parent = QModelIndex()) const; int columnCount(const QModelIndex &parent = QModelIndex()) const; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; - QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const; + QVariant headerData(int section, Qt::Orientation orientation, int role) const; Qt::ItemFlags flags(const QModelIndex &index) const; QList<StackFrame> m_stackFrames; |