forked from qt-creator/qt-creator
Debugger: Fix memory display
- Watchwindow: Do not open Address dialog if menu is canceled (act = 0 matching the unitialized unknown memory action) - Actually pass the address of the dialog to the agent - Make the "Open Memory editor..." action always visible to be able to look at const char *x pointing at y - Improve the address dialog with checking and dialog button box - Explicitly pass the quint64 around - Translate & purge
This commit is contained in:
@@ -53,8 +53,8 @@ class MemoryViewAgent : public QObject
|
||||
|
||||
public:
|
||||
// Called from Gui
|
||||
MemoryViewAgent(DebuggerManager *manager, quint64 startaddr);
|
||||
MemoryViewAgent(DebuggerManager *manager, const QString &startaddr);
|
||||
explicit MemoryViewAgent(DebuggerManager *manager, quint64 startaddr);
|
||||
explicit MemoryViewAgent(DebuggerManager *manager, const QString &startaddr);
|
||||
~MemoryViewAgent();
|
||||
|
||||
enum { BinBlockSize = 1024 };
|
||||
@@ -79,7 +79,7 @@ class DisassemblerViewAgent : public QObject
|
||||
|
||||
public:
|
||||
// Called from Gui
|
||||
DisassemblerViewAgent(DebuggerManager *manager);
|
||||
explicit DisassemblerViewAgent(DebuggerManager *manager);
|
||||
~DisassemblerViewAgent();
|
||||
|
||||
void setFrame(const StackFrame &frame);
|
||||
|
||||
Reference in New Issue
Block a user