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
07bb19fe
Commit
07bb19fe
authored
Sep 21, 2009
by
Robert Loehning
Browse files
Fixed Launcher::handleSupportMask
Reviewed-by: Friedemann Kleint
parent
1e6cda9b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/shared/trk/launcher.cpp
View file @
07bb19fe
...
...
@@ -397,13 +397,14 @@ void Launcher::handleWaitForFinished(const TrkResult &result)
void
Launcher
::
handleSupportMask
(
const
TrkResult
&
result
)
{
const
char
*
data
=
result
.
data
.
data
();
const
char
*
data
=
result
.
data
.
data
()
+
1
;
QByteArray
str
;
for
(
int
i
=
0
;
i
<
32
;
++
i
)
{
//str.append(" [" + formatByte(data[i]) + "]: ");
for
(
int
j
=
0
;
j
<
8
;
++
j
)
if
(
data
[
i
]
&
(
1
<<
j
))
str
.
append
(
QByteArray
::
number
(
i
*
8
+
j
,
16
));
str
.
append
(
QByteArray
::
number
(
i
*
8
+
j
,
16
)
+
" "
);
}
logMessage
(
"SUPPORTED: "
+
str
);
}
...
...
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