debugger: don't replicate response.fileName as markerFileName etc.

This commit is contained in:
hjk
2010-11-18 13:38:58 +01:00
parent bf1f351f29
commit 4943d19907
4 changed files with 59 additions and 53 deletions

View File

@@ -183,14 +183,14 @@ private:
bool isLocatedAt(const QString &fileName, int lineNumber,
bool useMarkerPosition) const;
QString toToolTip() const;
QString markerFileName() const;
int markerLineNumber() const;
BreakpointParameters data;
BreakpointState state; // Current state of breakpoint.
DebuggerEngine *engine; // Engine currently handling the breakpoint.
BreakpointResponse response;
BreakpointMarker *marker;
QString markerFileName; // Used to locate the marker.
int markerLineNumber;
};
typedef QHash<BreakpointId, BreakpointItem> BreakpointStorage;
typedef BreakpointStorage::ConstIterator ConstIterator;