debugger: use 'maint print msymbols' to extract Qt's namespace

still racy
This commit is contained in:
hjk
2011-01-19 10:48:39 +01:00
parent c1228d0c67
commit c736cc3c8d
9 changed files with 213 additions and 66 deletions

View File

@@ -519,9 +519,6 @@ private: ////////// View & Data Stuff //////////
void setLocals(const QList<GdbMi> &locals);
void handleStackListArgumentsClassic(const GdbResponse &response);
bool prepareForQmlBreak();
void handleQmlBreakpoint(const GdbResponse &response);
QSet<QByteArray> m_processedNames;
//
@@ -553,6 +550,16 @@ private: ////////// View & Data Stuff //////////
bool m_stackNeeded;
int m_currentThreadId;
//
// Qml
//
void addQmlBreakpointNumber(int type /* 1-8 */, int nr);
QHash<int, int> m_qmlBreakpointNumbers;
bool m_preparedForQmlBreak;
bool prepareForQmlBreak(bool on);
void handleQmlBreakpoint(const GdbResponse &response);
// HACK:
StackFrame m_targetFrame;
QByteArray m_currentThread;