Index: sources/view/VBluetooth.cpp =================================================================== diff -u -r0470ff6f209ff0c5089f8f0849b6da04f60f8f41 -r1d006f4e732fa2c5335d5adff425d0f39a99d37c --- sources/view/VBluetooth.cpp (.../VBluetooth.cpp) (revision 0470ff6f209ff0c5089f8f0849b6da04f60f8f41) +++ sources/view/VBluetooth.cpp (.../VBluetooth.cpp) (revision 1d006f4e732fa2c5335d5adff425d0f39a99d37c) @@ -19,7 +19,7 @@ this, SLOT(onDeviceDiscovered(const QBluetoothDeviceInfo))); connect(this, SIGNAL(selectedDevice(const QString)), - &_BLEScanner, SLOT(onSelectedDevice(const QString))); + &_BLEScanner, SLOT(doSelectDevice(const QString))); } /*! @@ -28,7 +28,7 @@ * Updates the status and emits a signal to the BLEScanner to * begin a new scan. */ -void VBluetooth::onScanForDevices() +void VBluetooth::doScanForDevices() { bleDevices.clear(); emit devicesChanged(); @@ -85,7 +85,7 @@ * Gets the BLE modelData for QML * \return QVariant - the modelData */ -QVariant VBluetooth::getDevices() +QVariant VBluetooth::doGetDevices() { return QVariant::fromValue(bleDevices); } @@ -95,7 +95,7 @@ * Emits a signal that the device was selected * \param addr - the selected BLE mac address */ -void VBluetooth::onSelectedDevice(const QString &addr) +void VBluetooth::doSelectDevice(const QString &addr) { emit selectedDevice(addr); }