Index: sources/device/DeviceView.cpp =================================================================== diff -u -rdeaef8b5bdfe9be7293e63fb6ac256a9ce3cd3f4 -redb8ee3edc41b1d324cd8a53e8e27a2a58289563 --- sources/device/DeviceView.cpp (.../DeviceView.cpp) (revision deaef8b5bdfe9be7293e63fb6ac256a9ce3cd3f4) +++ sources/device/DeviceView.cpp (.../DeviceView.cpp) (revision edb8ee3edc41b1d324cd8a53e8e27a2a58289563) @@ -28,6 +28,7 @@ void VDevice::initConnections() { + ACTION_VIEW_CONNECTION(SettingsData) DEVICE_VIEW_INIT_CONNECTIONS_LIST connect(&_DeviceController , SIGNAL(didPOSTOSVersionData(QString)), this , SLOT( onPOSTOSVersionData(QString))); @@ -632,3 +633,15 @@ ipAddress(vData); } +// ================================================= User Mode +/*! + * \brief VDevice::onSettingsDone + * \details fills the items below, read from the settings file, when the reading is notified done by ApplicationController. + */ +void VDevice::onActionReceive(const SettingsData &) +{ + QString mCategory = Storage::Settings_Category_SettingsSystem; + FROMVARIANT( userMode, "UserMode", "UserMode", UInt ); +} + +