forked from qt-creator/qt-creator
Debugger: Sanitize Datatypes, part 2: Stackframes.
Make address a quint64. Enable DisassemblerViewAgent to match the disassembly-addresses by converting the numbers, making it more robust. Remove the complicated formatting needed for CDB.
This commit is contained in:
@@ -75,12 +75,12 @@ public:
|
||||
~StackHandler();
|
||||
|
||||
void setFrames(const StackFrames &frames, bool canExpand = false);
|
||||
StackFrames frames() const;
|
||||
const StackFrames &frames() const;
|
||||
void setCurrentIndex(int index);
|
||||
int currentIndex() const { return m_currentIndex; }
|
||||
StackFrame currentFrame() const;
|
||||
int stackSize() const { return m_stackFrames.size(); }
|
||||
QString topAddress() const { return m_stackFrames.at(0).address; }
|
||||
quint64 topAddress() const { return m_stackFrames.at(0).address; }
|
||||
|
||||
// Called from StackHandler after a new stack list has been received
|
||||
void removeAll();
|
||||
|
||||
Reference in New Issue
Block a user