debugger: apply disassembler/normal view toggling immediately to stack view,

too
This commit is contained in:
hjk
2009-10-01 13:46:03 +02:00
parent 23358d8e25
commit c546a2c5eb
2 changed files with 6 additions and 3 deletions

View File

@@ -69,11 +69,12 @@ public:
private:
// QAbstractTableModel
int rowCount(const QModelIndex &parent = QModelIndex()) const;
int columnCount(const QModelIndex &parent = QModelIndex()) const;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
int rowCount(const QModelIndex &parent) const;
int columnCount(const QModelIndex &parent) const;
QVariant data(const QModelIndex &index, int role) const;
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
Qt::ItemFlags flags(const QModelIndex &index) const;
Q_SLOT void resetModel() { reset(); }
QList<StackFrame> m_stackFrames;
int m_currentIndex;