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:
@@ -186,6 +186,7 @@ QDataStream &operator<<(QDataStream &stream, const BreakpointParameters &s)
|
||||
stream << s.functionName;
|
||||
stream << s.useFullPath;
|
||||
stream << s.tracepoint;
|
||||
stream << s.module;
|
||||
return stream;
|
||||
}
|
||||
|
||||
@@ -203,6 +204,7 @@ QDataStream &operator>>(QDataStream &stream, BreakpointParameters &s)
|
||||
stream >> str; s.functionName = str;
|
||||
stream >> b; s.useFullPath = b;
|
||||
stream >> b; s.tracepoint = b;
|
||||
stream >> str ; s.module = str;
|
||||
return stream;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user