Index: sources/ApplicationController.cpp =================================================================== diff -u -rba15fce14caf76166c286da95974c69f8a24d4b8 -r64484a210332da6b2dcf3f0a23cb6c59f4caaf98 --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision ba15fce14caf76166c286da95974c69f8a24d4b8) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision 64484a210332da6b2dcf3f0a23cb6c59f4caaf98) @@ -113,7 +113,6 @@ // From HD/DG connect(&_MessageDispatcher, SIGNAL(didActionReceive(GuiActionType, const QVariantList &)), this , SLOT( onActionReceive(GuiActionType, const QVariantList &))); - connect(&_MessageDispatcher, SIGNAL(didFailedTransmit(Sequence)), this , SLOT( onFailedTransmit(Sequence))); Index: sources/ApplicationController.h =================================================================== diff -u -rba15fce14caf76166c286da95974c69f8a24d4b8 -r64484a210332da6b2dcf3f0a23cb6c59f4caaf98 --- sources/ApplicationController.h (.../ApplicationController.h) (revision ba15fce14caf76166c286da95974c69f8a24d4b8) +++ sources/ApplicationController.h (.../ApplicationController.h) (revision 64484a210332da6b2dcf3f0a23cb6c59f4caaf98) @@ -158,6 +158,7 @@ void didExport (); void didExportStat (quint32 vIndex, const QString &vFileName, quint8 vPercent); + /*! * \brief didSettingsInit - private signal to start initializing settings * \details This signal used internally to make the read task of the settings happen in Application_Thread Index: sources/gui/GuiController.cpp =================================================================== diff -u -rba15fce14caf76166c286da95974c69f8a24d4b8 -r64484a210332da6b2dcf3f0a23cb6c59f4caaf98 --- sources/gui/GuiController.cpp (.../GuiController.cpp) (revision ba15fce14caf76166c286da95974c69f8a24d4b8) +++ sources/gui/GuiController.cpp (.../GuiController.cpp) (revision 64484a210332da6b2dcf3f0a23cb6c59f4caaf98) @@ -70,7 +70,6 @@ connect(&_ApplicationController, SIGNAL(didActionReceive (GuiActionType, const QVariantList &)), this , SLOT( onActionReceive (GuiActionType, const QVariantList &))); - // From OS : USB Drive has been removed physically. // USB drive connect(&_ApplicationController, SIGNAL(didUSBDriveMount ()), Index: sources/gui/GuiController.h =================================================================== diff -u -rba15fce14caf76166c286da95974c69f8a24d4b8 -r64484a210332da6b2dcf3f0a23cb6c59f4caaf98 --- sources/gui/GuiController.h (.../GuiController.h) (revision ba15fce14caf76166c286da95974c69f8a24d4b8) +++ sources/gui/GuiController.h (.../GuiController.h) (revision 64484a210332da6b2dcf3f0a23cb6c59f4caaf98) @@ -123,6 +123,5 @@ ACTION_RECEIVE_MODEL_BRIDGE_DEFINITIONS ACTION_RECEIVE_PRIVATE_SLOT(UIPostFinalResultHDRequestData) - }; } Index: sources/gui/GuiView.cpp =================================================================== diff -u -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 -r64484a210332da6b2dcf3f0a23cb6c59f4caaf98 --- sources/gui/GuiView.cpp (.../GuiView.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) +++ sources/gui/GuiView.cpp (.../GuiView.cpp) (revision 64484a210332da6b2dcf3f0a23cb6c59f4caaf98) @@ -57,6 +57,7 @@ // From UI : USB drive umount connect(this , SIGNAL(didUSBDriveUmount()), &_GuiController, SLOT( doUSBDriveUmount())); + // From OS : USB drive removed connect(&_GuiController, SIGNAL(didUSBDriveMount ()), this , SLOT( onUSBDriveMount ())); Index: sources/gui/GuiView.h =================================================================== diff -u -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 -r64484a210332da6b2dcf3f0a23cb6c59f4caaf98 --- sources/gui/GuiView.h (.../GuiView.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) +++ sources/gui/GuiView.h (.../GuiView.h) (revision 64484a210332da6b2dcf3f0a23cb6c59f4caaf98) @@ -46,7 +46,6 @@ PROPERTY(bool , sdIsReady , false ) PROPERTY(bool , sdIsReadOnly , false ) - PROPERTY(quint64, sdTotal , 0 ) PROPERTY(quint64, sdAvail , 0 ) PROPERTY(quint8 , sdPercent , 0 )