debugger: make "threadspec" an int instead of a bytearray

This commit is contained in:
hjk
2010-11-30 13:39:01 +01:00
parent d02b2e9a36
commit d5c5b90b4f
8 changed files with 36 additions and 43 deletions

View File

@@ -43,7 +43,7 @@ namespace Internal {
BreakpointParameters::BreakpointParameters(BreakpointType t)
: type(t), enabled(true), useFullPath(false),
ignoreCount(0), lineNumber(0), address(0)
ignoreCount(0), lineNumber(0), address(0), threadSpec(0)
{}
bool BreakpointParameters::equals(const BreakpointParameters &rhs) const