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
a908e673
Commit
a908e673
authored
Dec 09, 2008
by
Patrick Star
Browse files
Fixes: - crash on windows
parent
bbc97c39
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/watchhandler.cpp
View file @
a908e673
...
...
@@ -118,7 +118,7 @@ static QByteArray quoteUnprintable(const QByteArray &ba)
QByteArray
res
;
char
buf
[
10
];
for
(
int
i
=
0
,
n
=
ba
.
size
();
i
!=
n
;
++
i
)
{
char
c
=
ba
.
at
(
i
);
unsigned
char
c
=
ba
.
at
(
i
);
if
(
isprint
(
c
))
{
res
+=
c
;
}
else
{
...
...
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