Index: sources/device/DeviceGlobals.h =================================================================== diff -u -r76aef158f5b9cdcecfa6003a72fe35b32c88eac2 -r47c8f13876317ba36500400f894d96c9bce9eb17 --- sources/device/DeviceGlobals.h (.../DeviceGlobals.h) (revision 76aef158f5b9cdcecfa6003a72fe35b32c88eac2) +++ sources/device/DeviceGlobals.h (.../DeviceGlobals.h) (revision 47c8f13876317ba36500400f894d96c9bce9eb17) @@ -64,7 +64,7 @@ void vATTRIBUTE##Changed (const vTYPE & v##vATTRIBUTE ); \ private : \ /*! \ - * \brief VDevice::bluetoothPairedResetRequest \ + * \brief VDevice::Request \ * \details The slot which will be called in case \ * the attribute value has been updated in the QML. \ * The updated value is wrapped in the corresponding model \ @@ -173,35 +173,43 @@ #define DEVICE_DEV_PARENT_LIST \ DEVICE_DEV_PARENT ( Brightness ) \ DEVICE_DEV_PARENT ( BluetoothPairedReset ) \ + DEVICE_DEV_PARENT ( BluetoothPairedQuery ) \ #define DEVICE_DEV_INIT_CONNECTIONS_LIST \ DEVICE_DEV_INIT_CONNECTIONS ( Brightness ) \ DEVICE_DEV_INIT_CONNECTIONS ( BluetoothPairedReset ) \ + DEVICE_DEV_INIT_CONNECTIONS ( BluetoothPairedQuery ) \ #define DEVICE_DEV_DEFINITION_LIST \ DEVICE_DEV_DEFINITION ( Brightness ) \ DEVICE_DEV_DEFINITION ( BluetoothPairedReset ) \ + DEVICE_DEV_DEFINITION ( BluetoothPairedQuery ) \ /* ---------------------------- APP */ #define DEVICE_APP_INIT_CONNECTIONS_LIST \ DEVICE_APP_INIT_CONNECTIONS ( Brightness ) \ DEVICE_APP_INIT_CONNECTIONS ( BluetoothPairedReset ) \ + DEVICE_APP_INIT_CONNECTIONS ( BluetoothPairedQuery ) \ #define DEVICE_APP_BRIDGE_DEFINITION_LIST \ DEVICE_APP_BRIDGE_DEFINITION( Brightness ) \ DEVICE_APP_BRIDGE_DEFINITION( BluetoothPairedReset ) \ + DEVICE_APP_BRIDGE_DEFINITION( BluetoothPairedQuery ) \ /* ---------------------------- GUI */ #define DEVICE_GUI_BRIDGE_DEFINITION_LIST \ DEVICE_GUI_BRIDGE_DEFINITION( Brightness ) \ DEVICE_GUI_BRIDGE_DEFINITION( BluetoothPairedReset ) \ + DEVICE_GUI_BRIDGE_DEFINITION( BluetoothPairedQuery ) \ #define DEVICE_GUI_INIT_CONNECTIONS_LIST \ DEVICE_GUI_INIT_CONNECTIONS ( Brightness ) \ DEVICE_GUI_INIT_CONNECTIONS ( BluetoothPairedReset ) \ + DEVICE_GUI_INIT_CONNECTIONS ( BluetoothPairedQuery ) \ /* ---------------------------- VIEW */ #define DEVICE_VIEW_INIT_CONNECTIONS_LIST \ DEVICE_VIEW_INIT_CONNECTIONS( Brightness ) \ DEVICE_VIEW_INIT_CONNECTIONS( BluetoothPairedReset ) \ + DEVICE_VIEW_INIT_CONNECTIONS( BluetoothPairedQuery ) \