debugger: looks like the BreakpointData layer is going to be unneeded.

This commit is contained in:
hjk
2010-11-16 11:06:09 +01:00
parent 3cf3f14d7f
commit 694503cc76
6 changed files with 33 additions and 45 deletions

View File

@@ -84,6 +84,7 @@ class BreakpointParameters
public:
explicit BreakpointParameters(BreakpointType = UnknownType);
bool equals(const BreakpointParameters &rhs) const;
bool conditionsMatch(const QByteArray &other) const;
BreakpointType type; // Type of breakpoint.
bool enabled; // Should we talk to the debugger engine?
@@ -118,7 +119,6 @@ public:
bool useFullPath() const { return m_parameters.useFullPath; }
QString toString() const;
bool conditionsMatch(const QByteArray &other) const;
QString functionName() const { return m_parameters.functionName; }
QString fileName() const { return m_parameters.fileName; }
int lineNumber() const { return m_parameters.lineNumber; }