Skip to content
Snippets Groups Projects
Commit c546a2c5 authored by hjk's avatar hjk
Browse files

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

too
parent 23358d8e
No related branches found
No related tags found
No related merge requests found
...@@ -89,6 +89,8 @@ StackHandler::StackHandler(QObject *parent) ...@@ -89,6 +89,8 @@ StackHandler::StackHandler(QObject *parent)
{ {
m_currentIndex = 0; m_currentIndex = 0;
m_canExpand = false; m_canExpand = false;
connect(theDebuggerAction(OperateByInstruction), SIGNAL(triggered()),
this, SLOT(resetModel()));
} }
int StackHandler::rowCount(const QModelIndex &parent) const int StackHandler::rowCount(const QModelIndex &parent) const
......
...@@ -69,11 +69,12 @@ public: ...@@ -69,11 +69,12 @@ public:
private: private:
// QAbstractTableModel // QAbstractTableModel
int rowCount(const QModelIndex &parent = QModelIndex()) const; int rowCount(const QModelIndex &parent) const;
int columnCount(const QModelIndex &parent = QModelIndex()) const; int columnCount(const QModelIndex &parent) const;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; QVariant data(const QModelIndex &index, int role) const;
QVariant headerData(int section, Qt::Orientation orientation, int role) const; QVariant headerData(int section, Qt::Orientation orientation, int role) const;
Qt::ItemFlags flags(const QModelIndex &index) const; Qt::ItemFlags flags(const QModelIndex &index) const;
Q_SLOT void resetModel() { reset(); }
QList<StackFrame> m_stackFrames; QList<StackFrame> m_stackFrames;
int m_currentIndex; int m_currentIndex;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment