Index: sources/cloudsync/CloudSyncController.cpp =================================================================== diff -u -r5d20b99876194a12730c601914452691dd3a7558 -r9d5e23f6277a0b3c8c643413e6ff0257695420d3 --- sources/cloudsync/CloudSyncController.cpp (.../CloudSyncController.cpp) (revision 5d20b99876194a12730c601914452691dd3a7558) +++ sources/cloudsync/CloudSyncController.cpp (.../CloudSyncController.cpp) (revision 9d5e23f6277a0b3c8c643413e6ff0257695420d3) @@ -18,7 +18,6 @@ #include // Project -// #include "MessageDispatcher.h" #include "ApplicationController.h" #include "DeviceController.h" #include "FileHandler.h" @@ -112,8 +111,8 @@ this , SLOT( onWatchFileChange (const QString &))); connect(&_DeviceController , SIGNAL(didFactoryReset (bool)), this , SLOT( onFactoryReset (bool))); - connect(&_TreatmentLog , SIGNAL(didTxPending (const QString &)), - this , SLOT( onTxPending (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. } @@ -740,7 +739,7 @@ } } -void CloudSyncController::sendPendingLog(const QString &vFileName) +void CloudSyncController::sendPendingTxr(const QString &vFileName) { bool ok = true; Q_UNUSED(ok) QVariantList args ; @@ -755,9 +754,9 @@ toLog(error, args); } -void CloudSyncController::onTxPending(const QString &vFileName) +void CloudSyncController::onPendingTxr(const QString &vFileName) { - sendPendingLog(vFileName); + sendPendingTxr(vFileName); } /*!