From kde-commits Tue Sep 13 17:34:29 2016 From: Tobias Leupold Date: Tue, 13 Sep 2016 17:34:29 +0000 To: kde-commits Subject: [kphotoalbum] RemoteControl: Fixed another "fromAscii". Message-Id: X-MARC-Message: https://marc.info/?l=kde-commits&m=147378807917449 Git commit 5f0ed4f84ecfd4d1257046781964e0cf711501c0 by Tobias Leupold. Committed on 13/09/2016 at 17:34. Pushed by tleupold into branch 'master'. Fixed another "fromAscii". M +1 -1 RemoteControl/Server.cpp http://commits.kde.org/kphotoalbum/5f0ed4f84ecfd4d1257046781964e0cf711501c0 diff --git a/RemoteControl/Server.cpp b/RemoteControl/Server.cpp index 1254fc1..82ca785 100644 --- a/RemoteControl/Server.cpp +++ b/RemoteControl/Server.cpp @@ -72,7 +72,7 @@ void Server::readIncommingUDP() QHostAddress address; qint64 len =3D m_socket->readDatagram(data,1000, &address); QString string =3D QString::fromUtf8(data).left(len); - QStringList list =3D string.split(QChar::fromAscii(' ')); + QStringList list =3D string.split(QChar::fromLatin1(' ')); if (list[0] !=3D QString::fromUtf8("KPhotoAlbum")) { return; }