debugger: convert register handler/window architecture

This commit is contained in:
hjk
2010-11-05 13:35:31 +01:00
parent 702e9f3fb9
commit 1afea78c7d
10 changed files with 147 additions and 182 deletions

View File

@@ -117,7 +117,7 @@ private:
QVariant headerData(int section, Qt::Orientation orientation, int role) const;
Qt::ItemFlags flags(const QModelIndex &index) const;
void markerUpdated(BreakpointMarker *, int lineNumber);
void markerUpdated(BreakpointMarker *marker, int lineNumber);
void loadBreakpoints();
void saveBreakpoints();
void removeBreakpointHelper(int index);
@@ -138,7 +138,8 @@ private:
mutable BreakpointData *m_lastFound;
mutable bool m_lastFoundQueried;
QList<BreakpointData *> m_bp;
Breakpoints m_bp;
QHash<quint64, BreakpointMarker *> m_markers;
};
} // namespace Internal