summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@digia.com>2014-05-14 16:00:40 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-05-15 10:24:21 +0200
commitd1d2fcff097104a53750b0bf1e1129a4d1c0ed7d (patch)
tree3c620f70e8052c8c9ae628fea843e4c428d2793e
parent6e5efaec53b77b485706d17f3f9cef5cc7b953ae (diff)
downloadqtconnectivity-d1d2fcff097104a53750b0bf1e1129a4d1c0ed7d.tar.gz
Add a few Qt 6 TODO entries
Change-Id: Ic169d907b872fd277df4f32be1270d7bceabac32 Reviewed-by: Kai Koehne <kai.koehne@digia.com>
-rw-r--r--src/bluetooth/qbluetoothdevicediscoveryagent.h1
-rw-r--r--src/bluetooth/qbluetoothsocket.h1
-rw-r--r--src/bluetooth/qbluetoothtransferreply.h1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/bluetooth/qbluetoothdevicediscoveryagent.h b/src/bluetooth/qbluetoothdevicediscoveryagent.h
index 4ac1685e..f52f32fb 100644
--- a/src/bluetooth/qbluetoothdevicediscoveryagent.h
+++ b/src/bluetooth/qbluetoothdevicediscoveryagent.h
@@ -79,6 +79,7 @@ public:
explicit QBluetoothDeviceDiscoveryAgent(const QBluetoothAddress &deviceAdapter, QObject *parent = 0);
~QBluetoothDeviceDiscoveryAgent();
+ // TODO Remove inquiry type in Qt 6 -> not really used anywhere
QBluetoothDeviceDiscoveryAgent::InquiryType inquiryType() const;
void setInquiryType(QBluetoothDeviceDiscoveryAgent::InquiryType type);
diff --git a/src/bluetooth/qbluetoothsocket.h b/src/bluetooth/qbluetoothsocket.h
index 0cc765cd..b06330c7 100644
--- a/src/bluetooth/qbluetoothsocket.h
+++ b/src/bluetooth/qbluetoothsocket.h
@@ -66,6 +66,7 @@ class Q_BLUETOOTH_EXPORT QBluetoothSocket : public QIODevice
public:
+ // TODO Decouple SocketState and SocketError enum values from QAbstractSocket in Qt 6
enum SocketState {
UnconnectedState = QAbstractSocket::UnconnectedState,
ServiceLookupState = QAbstractSocket::HostLookupState,
diff --git a/src/bluetooth/qbluetoothtransferreply.h b/src/bluetooth/qbluetoothtransferreply.h
index 33910fd9..958d4ff6 100644
--- a/src/bluetooth/qbluetoothtransferreply.h
+++ b/src/bluetooth/qbluetoothtransferreply.h
@@ -83,6 +83,7 @@ public Q_SLOTS:
void abort();
Q_SIGNALS:
+ //TODO Remove QBluetoothTransferReply* parameter in Qt 6
void finished(QBluetoothTransferReply *);
void transferProgress(qint64 bytesTransferred, qint64 bytesTotal);