summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/breakpoint.cpp
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2010-11-30 13:39:01 +0100
committerhjk <qtc-committer@nokia.com>2010-11-30 13:40:23 +0100
commitd5c5b90b4f1013fa1f7d79b3dd9a99d64b58c2c9 (patch)
treeccb8968f4beba9382f10b9b9546f3bcdbb66e3c3 /src/plugins/debugger/breakpoint.cpp
parentd02b2e9a36089d2177f916610949a33c27d46684 (diff)
downloadqt-creator-d5c5b90b4f1013fa1f7d79b3dd9a99d64b58c2c9.tar.gz
debugger: make "threadspec" an int instead of a bytearray
Diffstat (limited to 'src/plugins/debugger/breakpoint.cpp')
-rw-r--r--src/plugins/debugger/breakpoint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/breakpoint.cpp b/src/plugins/debugger/breakpoint.cpp
index e92721b280..0d510c0293 100644
--- a/src/plugins/debugger/breakpoint.cpp
+++ b/src/plugins/debugger/breakpoint.cpp
@@ -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