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
Tobias Hunger
qt-creator
Commits
0a0586a2
Commit
0a0586a2
authored
Feb 19, 2009
by
hjk
Browse files
Fixes: work on QT_NO_CAST_FROM_BYTEARRAY
parent
57524485
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/shared/qtsingleapplication/qtlocalpeer.cpp
View file @
0a0586a2
...
...
@@ -166,7 +166,7 @@ void QtLocalPeer::receiveConnection()
return
;
}
// ### async this
QString
message
(
QString
::
fromUtf8
(
uMsg
));
QString
message
=
QString
::
fromUtf8
(
uMsg
.
constData
(),
uMsg
.
size
(
));
socket
->
write
(
ack
,
qstrlen
(
ack
));
socket
->
waitForBytesWritten
(
1000
);
delete
socket
;
...
...
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