forked from qt-creator/qt-creator
debugger: replace BreakpointPending state with a flag in BreakpointResponse
To keep the breakpoint state machinery simple
This commit is contained in:
@@ -176,8 +176,7 @@ private:
|
||||
BreakpointItem();
|
||||
|
||||
void destroyMarker();
|
||||
bool isPending() const { return state == BreakpointPending
|
||||
|| state == BreakpointNew; }
|
||||
bool isPending() const { return response.pending; }
|
||||
bool isLocatedAt(const QString &fileName, int lineNumber,
|
||||
bool useMarkerPosition) const;
|
||||
QString toToolTip() const;
|
||||
|
||||
Reference in New Issue
Block a user