Index: sources/gui/GuiView.h =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 --- sources/gui/GuiView.h (.../GuiView.h) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/GuiView.h (.../GuiView.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) @@ -42,9 +42,6 @@ { Q_OBJECT - // disabled coco begin validated: This needs user interaction to plug-in/out SD Card - // has been tested manually - PROPERTY(QString, platform , QGuiApplication::platformName()) PROPERTY(bool , sdIsReady , false ) @@ -57,7 +54,6 @@ // this property will be set if the sd-card space gets lower than required amount in percent that has been defined in DeviceController. PROPERTY(qint8 , sdTooLowPecent, -1 ) // -1 means the event never happened - // disabled coco end #ifdef BUILD_FOR_DESKTOP PROPERTY(bool , usbIsReady , true ) @@ -125,8 +121,8 @@ void onPOSTPass (bool vPassed); public slots: // is public since will be used in the UI and is in the same thread. - void doActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => HD/DG - void doActionTransmit(GuiActionType vAction, const QVariant &vData); // UI => HD/DG + void doActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => TD/DD + void doActionTransmit(GuiActionType vAction, const QVariant &vData); // UI => TD/DD void doUSBDriveUmount(); void doExportLog (); @@ -146,8 +142,8 @@ void doGenerateQRImage (const QString &vText ); signals: - void didActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= HD/DG - void didActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => HD/DG + void didActionReceive (GuiActionType vAction, const QVariantList &vData); // UI <= HD/DD + void didActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => TD/DD void didUSBDriveMount (); void didUSBDriveUmount();