Index: sources/device/DeviceController.h =================================================================== diff -u -r15dffa44e42fe108caa6dd0dfbe659b192ee5323 -r5a9b7ff46df9cecc258f7cb18019a51bca76bce3 --- sources/device/DeviceController.h (.../DeviceController.h) (revision 15dffa44e42fe108caa6dd0dfbe659b192ee5323) +++ sources/device/DeviceController.h (.../DeviceController.h) (revision 5a9b7ff46df9cecc258f7cb18019a51bca76bce3) @@ -62,8 +62,12 @@ this , SLOT(onFinish (int))); } void start() { +#ifdef BUILD_FOR_DESKTOP + qDebug() << "DeviceController.TimedProcess: " << _timeout << _command << _arguments; +#else _pid = startTimer(_timeout); _process->start(_command, _arguments); +#endif } protected: @@ -109,6 +113,7 @@ QFileSystemWatcher _fileSystemWatcher; + QString _osVersion = ""; QString _macEthernet = ""; QString _macWireless = ""; QString _macBluetooth = ""; @@ -138,13 +143,15 @@ void onEventThreadChange (); /*! - * \brief didPOSTData + * \brief onPOSTData * \details These signals will be emitted when UI is done with the POST and will let DeviceView update its property(ies). + * \param vOSVersion - OS Version * \param vMacEthernet - Ethernet Mac Adress * \param vMacWireless - Wireless Mac Adress * \param vMacBluetooth - Bluetooth Mac Adress * \param vNetCloudSync - CloudSync IP Adress */ + void onPOSTOSVersionData (const QString &vOSVersion ); void onPOSTEthernetData (const QString &vMacAddress); void onPOSTWirelessData (const QString &vMacAddress); void onPOSTBluetoothData (const QString &vMacAddress); @@ -263,6 +270,7 @@ */ void didEventThreadChange (QPrivateSignal); + void didPOSTOSVersionData (const QString &vOSVersion ); void didPOSTEthernetData (const QString &vMacAddress); void didPOSTWirelessData (const QString &vMacAddress); void didPOSTBluetoothData (const QString &vMacAddress);