Index: sources/view/settings/VAdjustmentAlarmVolume.cpp =================================================================== diff -u -r27cc308ff5113a9386899d3c8f8b29962a8498e1 -ra04fd119778f0483cba5139a11e3c6bad7f2324a --- sources/view/settings/VAdjustmentAlarmVolume.cpp (.../VAdjustmentAlarmVolume.cpp) (revision 27cc308ff5113a9386899d3c8f8b29962a8498e1) +++ sources/view/settings/VAdjustmentAlarmVolume.cpp (.../VAdjustmentAlarmVolume.cpp) (revision a04fd119778f0483cba5139a11e3c6bad7f2324a) @@ -41,7 +41,7 @@ // Please notice that it works but we are just predicting what the FW has and the GUI is totally agnostic about the FW current value, // so we get easily out of sync with FW. if (vData.mAccepted) { - hdAlarmVolume( _data.volume ); + hdAlarmVolume( _data.volume() ); status(""); } else { @@ -58,6 +58,6 @@ void View::VAdjustmentAlarmVolume::doAdjustment(quint8 vVolume) { - _data.volume = vVolume; + _data.volume(vVolume); emit didAdjustment(_data); }