summaryrefslogtreecommitdiffstats
path: root/src/imports/bluetooth/plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/bluetooth/plugin.cpp')
-rw-r--r--src/imports/bluetooth/plugin.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/imports/bluetooth/plugin.cpp b/src/imports/bluetooth/plugin.cpp
index 2311d6b8..bcf59794 100644
--- a/src/imports/bluetooth/plugin.cpp
+++ b/src/imports/bluetooth/plugin.cpp
@@ -39,7 +39,7 @@
**
****************************************************************************/
-
+#include <QtCore/QLoggingCategory>
#include <QtQml/QQmlEngine>
#include <QtQml/QQmlExtensionPlugin>
@@ -75,7 +75,13 @@ public:
qmlRegisterType<QDeclarativeBluetoothService >(uri, major, minor, "BluetoothService");
qmlRegisterType<QDeclarativeBluetoothSocket >(uri, major, minor, "BluetoothSocket");
+ // Register the 5.3 types
+ // introduces 5.3 version, other existing 5.2 exports automatically become availabe under 5.3 as well
+ minor = 3;
+ qmlRegisterType<QDeclarativeBluetoothDiscoveryModel >(uri, major, minor, "BluetoothDiscoveryModel");
}
};
+Q_LOGGING_CATEGORY(QT_BT_QML, "qt.bluetooth.qml")
+
#include "plugin.moc"