forked from qt-creator/qt-creator
Debugger: Add a module to breakpoint.
To speed up CDB, lldb. Add to dialogs, serialize. Move breakpoint.ui into Debugger::Internal, add buddies. Rubber-stamped-by: hjk
This commit is contained in:
@@ -63,7 +63,8 @@ bool BreakpointParameters::equals(const BreakpointParameters &rhs) const
|
||||
&& address == rhs.address
|
||||
&& threadSpec == rhs.threadSpec
|
||||
&& functionName == rhs.functionName
|
||||
&& tracepoint == rhs.tracepoint;
|
||||
&& tracepoint == rhs.tracepoint
|
||||
&& module == rhs.module;
|
||||
}
|
||||
|
||||
bool BreakpointParameters::conditionsMatch(const QByteArray &other) const
|
||||
@@ -88,10 +89,10 @@ QString BreakpointParameters::toString() const
|
||||
ts << " FunctionName: " << functionName;
|
||||
ts << " UseFullPath: " << useFullPath;
|
||||
ts << " Tracepoint: " << tracepoint;
|
||||
ts << " Module: " << module;
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// BreakpointParameters
|
||||
|
||||
Reference in New Issue
Block a user