Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
81701e08
Commit
81701e08
authored
Jan 05, 2011
by
hjk
Browse files
debugger: do not write the 'all' (-1) threadspec to the session file
This confuses 2.1 which uses 0 as 'all' value.
parent
aa15ba71
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/breakhandler.cpp
View file @
81701e08
...
...
@@ -265,7 +265,7 @@ void BreakHandler::saveBreakpoints()
map
.
insert
(
_
(
"condition"
),
data
.
condition
);
if
(
data
.
ignoreCount
)
map
.
insert
(
_
(
"ignorecount"
),
data
.
ignoreCount
);
if
(
data
.
threadSpec
)
if
(
data
.
threadSpec
>=
0
)
map
.
insert
(
_
(
"threadspec"
),
data
.
threadSpec
);
if
(
!
data
.
enabled
)
map
.
insert
(
_
(
"disabled"
),
_
(
"1"
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment