summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOliver Wolff <oliver.wolff@qt.io>2017-01-30 13:48:05 +0100
committerMaurice Kalinowski <maurice.kalinowski@qt.io>2017-01-30 15:39:07 +0000
commit4abc1ebedc13b7ec9a3ea8537dc08d0268c0022b (patch)
tree74aa44bc0f92b087e86b5fc50c1a90f9c03222fa /src
parent97977bc5f2112c3ac48983f9b7887627085f38d1 (diff)
winrt: Fix wrong function name in invokeMethod in bluetooth socket
Change-Id: I9fd9131c031328afa936a52e42371409e3fbac48 Reviewed-by: Maurice Kalinowski <maurice.kalinowski@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/bluetooth/qbluetoothsocket_winrt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bluetooth/qbluetoothsocket_winrt.cpp b/src/bluetooth/qbluetoothsocket_winrt.cpp
index b8a57adb..98847b18 100644
--- a/src/bluetooth/qbluetoothsocket_winrt.cpp
+++ b/src/bluetooth/qbluetoothsocket_winrt.cpp
@@ -549,7 +549,7 @@ void QBluetoothSocketPrivate::handleNewData(const QVector<QByteArray> &data)
{
// Defer putting the data into the list until the next event loop iteration
// (where the readyRead signal is emitted as well)
- QMetaObject::invokeMethod(this, "putIntoPendingData", Qt::QueuedConnection,
+ QMetaObject::invokeMethod(this, "addToPendingData", Qt::QueuedConnection,
Q_ARG(QVector<QByteArray>, data));
}