Index: sources/cloudsync/CloudSyncController.cpp =================================================================== diff -u -rd862dfcd402206e33b314c458e41c13b684a4565 -r8c92a0d2fc6cb6475f502153dcbb0dacc7660021 --- sources/cloudsync/CloudSyncController.cpp (.../CloudSyncController.cpp) (revision d862dfcd402206e33b314c458e41c13b684a4565) +++ sources/cloudsync/CloudSyncController.cpp (.../CloudSyncController.cpp) (revision 8c92a0d2fc6cb6475f502153dcbb0dacc7660021) @@ -21,7 +21,6 @@ #include "ApplicationController.h" #include "DeviceController.h" #include "FileHandler.h" -#include "TreatmentLog.h" #include "crc.h" SINGLETON_DISABLE(CloudSyncController) @@ -114,8 +113,8 @@ this , SLOT( onFactoryReset (bool))); connect(&_DeviceController , SIGNAL(didDecommissioning (bool)), this , SLOT( onDecommissioning (bool))); - connect(&_TreatmentLog , SIGNAL(didPendingTxr (const QString &)), - this , SLOT( onPendingTxr (const QString &))); + //connect(&_TreatmentLog , SIGNAL(didPendingTxr (const QString &)), + // this , SLOT( onPendingTxr (const QString &))); connect(this , SIGNAL(didInitComplete ()), this , SLOT( onInitComplete ()),Qt::QueuedConnection); // it has to be queued connection, don't remove it. } @@ -762,6 +761,10 @@ // preparing the message // Same parameters will be sent for these messages for now, so data is not changed. + Q_UNUSED(vAction) + Q_UNUSED(vData) + // AUTOGEN ISSUE + /* switch (vAction) { case GuiActionType::ID_TDOpModeData : { // ---------------------------------------------------------------------------------------- @@ -791,6 +794,7 @@ default: break; } + */ } void CloudSyncController::sendPendingTxr(const QString &vFileName) @@ -1237,6 +1241,10 @@ // if both values received initDeviceInfoWait(); + Q_UNUSED(vAction) + Q_UNUSED(vData) + // AUTOGEN ISSUE + /* if ( vAction == GuiActionType::ID_AdjustSerialTDRsp ) { if ( vData.count() ) { _deviceInfoHD = vData[eDeviceInfo_Ix].toString(); @@ -1256,6 +1264,7 @@ saveDeviceInfoTimeOut(); ok = true; } + */ return ok; }