Index: sources/cloudsync/CloudSyncController.cpp =================================================================== diff -u -rabd0e958420f25e5b8dd8ce6e21131f8561b99e0 -r2f0f23635ac0225d2012e3db9d1043ce19c6d715 --- sources/cloudsync/CloudSyncController.cpp (.../CloudSyncController.cpp) (revision abd0e958420f25e5b8dd8ce6e21131f8561b99e0) +++ sources/cloudsync/CloudSyncController.cpp (.../CloudSyncController.cpp) (revision 2f0f23635ac0225d2012e3db9d1043ce19c6d715) @@ -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); } /*!