Skip to content
GitLab
Menu
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
fd73952e
Commit
fd73952e
authored
Dec 09, 2009
by
hjk
Browse files
debugger: avoid unpleasant line break in warning
parent
8c52f572
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggeractions.cpp
View file @
fd73952e
...
...
@@ -267,8 +267,8 @@ DebuggerSettings *DebuggerSettings::instance()
item
=
new
SavedAction
(
instance
);
item
->
setText
(
tr
(
"Use precise breakpoints"
));
item
->
setCheckable
(
true
);
item
->
setDefaultValue
(
tru
e
);
item
->
setValue
(
tru
e
);
item
->
setDefaultValue
(
fals
e
);
item
->
setValue
(
fals
e
);
item
->
setSettingsKey
(
debugModeGroup
,
QLatin1String
(
"UsePreciseBreakpoints"
));
instance
->
insertItem
(
UsePreciseBreakpoints
,
item
);
...
...
src/plugins/debugger/debuggerplugin.cpp
View file @
fd73952e
...
...
@@ -247,7 +247,7 @@ bool DebuggerListener::coreAboutToClose()
break
;
}
const
QString
question
=
cleanTermination
?
tr
(
"A debugging session is still in progress.
Would you like to terminate it?"
)
:
tr
(
"A debugging session is still in progress.
\n
Would you like to terminate it?"
)
:
tr
(
"A debugging session is still in progress. Terminating the session in the current"
" state (%1) can leave the target in an inconsistent state."
" Would you still like to terminate it?"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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