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
9ee71d7d
Commit
9ee71d7d
authored
Jan 12, 2010
by
hjk
Browse files
debugger: fix timeout message.
parent
40e4837d
Changes
1
Show whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/gdbengine.cpp
View file @
9ee71d7d
...
...
@@ -855,7 +855,7 @@ void GdbEngine::commandTimeout()
"to a command within %1 seconds. This may been it is stuck "
"in an endless loop or taking longer than expected to perform "
"the operation it was reqested.
\n
You have a choice of waiting "
"longer or abort debugging."
).
arg
(
timeOut
);
"longer or abort debugging."
).
arg
(
timeOut
/
1000
);
QMessageBox
*
mb
=
showMessageBox
(
QMessageBox
::
Critical
,
tr
(
"Gdb not responding"
),
msg
,
QMessageBox
::
Ok
|
QMessageBox
::
Cancel
);
...
...
Write
Preview
Supports
Markdown
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