summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@qt.io>2017-10-23 12:03:43 +0200
committerAlex Blasche <alexander.blasche@qt.io>2017-10-24 07:44:50 +0000
commitd51b2de5848e62ad1493d2cbbe0b2e8d86b42358 (patch)
treeece78c4d67657e1ce740f928ce18aad85132a58c
parente26edb020084554e8b567d3bc15ce638394cf7fc (diff)
Make QtBluetooth on Win32 compile (following merge from dev)
Change-Id: Idfc9f44cd9ab6064448804ed3a5d9fb81e644281 Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com>
-rw-r--r--src/bluetooth/qbluetoothsocket_win.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/bluetooth/qbluetoothsocket_win.cpp b/src/bluetooth/qbluetoothsocket_win.cpp
index e18c985b..a6ce9684 100644
--- a/src/bluetooth/qbluetoothsocket_win.cpp
+++ b/src/bluetooth/qbluetoothsocket_win.cpp
@@ -145,4 +145,14 @@ qint64 QBluetoothSocketPrivate::bytesAvailable() const
return 0;
}
+bool QBluetoothSocketPrivate::canReadLine() const
+{
+ return false;
+}
+
+qint64 QBluetoothSocketPrivate::bytesToWrite() const
+{
+ return 0;
+}
+
QT_END_NAMESPACE