Index: sources/view/VBluetooth.h =================================================================== diff -u -r1d006f4e732fa2c5335d5adff425d0f39a99d37c -r9efb7cf51c882dc1f374df0b2a8b8c20efafaa4e --- sources/view/VBluetooth.h (.../VBluetooth.h) (revision 1d006f4e732fa2c5335d5adff425d0f39a99d37c) +++ sources/view/VBluetooth.h (.../VBluetooth.h) (revision 9efb7cf51c882dc1f374df0b2a8b8c20efafaa4e) @@ -22,19 +22,20 @@ explicit VBluetooth(QObject *parent = nullptr); protected: - Q_PROPERTY(QVariant devices READ doGetDevices NOTIFY devicesChanged) - Q_PROPERTY(QVariant status READ getStatus NOTIFY statusChanged) + Q_PROPERTY(QVariant devices READ doGetDevices NOTIFY didDevicesChanged) + Q_PROPERTY(QVariant status READ getStatus NOTIFY didStatusChanged) public slots: void doScanForDevices(); QVariant doGetDevices(); void doSelectDevice(const QString &addr); signals: - void devicesChanged(); - void selectedDevice(const QString &addr); - void scanFinished(); - void statusChanged(); + void didDevicesChanged(); + void didSelectDevice(const QString &addr); + void didScanFinished(); + void didStatusChanged(); + void didRequestScanForDevices(); private: QList bleDevices;