diff options
| author | Aleksi Suomalainen <suomalainen.aleksi@gmail.com> | 2014-10-24 16:29:04 +0000 |
|---|---|---|
| committer | Aleksi Suomalainen <suomalainen.aleksi@gmail.com> | 2014-10-24 18:33:52 +0000 |
| commit | b30c991f3fa5f196cfb7bf46eb784169c9b2eb74 (patch) | |
| tree | 3198f44da97017a63df1e783013a16fa2c5488fe /daemon/watchconnector.cpp | |
| parent | 31a206e93e2266f3dcc0e1c2c43ab92e5ae7bd9c (diff) | |
Fixes to Qt 5.2
Diffstat (limited to 'daemon/watchconnector.cpp')
| -rw-r--r-- | daemon/watchconnector.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/daemon/watchconnector.cpp b/daemon/watchconnector.cpp index 91c5217..d91d183 100644 --- a/daemon/watchconnector.cpp +++ b/daemon/watchconnector.cpp @@ -66,8 +66,11 @@ void WatchConnector::handleWatch(const QString &name, const QString &address) if (emit_name) emit nameChanged(); logger()->debug() << "Creating socket"; +#if QT_VERSION < QT_VERSION_CHECK(5, 2, 0) socket = new QBluetoothSocket(QBluetoothSocket::RfcommSocket); - +#else + socket = new QBluetoothSocket(QBluetoothServiceInfo::RfcommProtocol); +#endif connect(socket, SIGNAL(readyRead()), SLOT(onReadSocket())); connect(socket, SIGNAL(bytesWritten(qint64)), SLOT(onBytesWritten(qint64))); connect(socket, SIGNAL(connected()), SLOT(onConnected())); |
