Index: sources/model/hd/alarm/MAlarmStatusData.cpp =================================================================== diff -u -ra09c1a91b8eaf9d7164ba7f274d4ccd557c05f22 -r720d1051f9f5fef2d82f3878454550e9e2c5ca92 --- sources/model/hd/alarm/MAlarmStatusData.cpp (.../MAlarmStatusData.cpp) (revision a09c1a91b8eaf9d7164ba7f274d4ccd557c05f22) +++ sources/model/hd/alarm/MAlarmStatusData.cpp (.../MAlarmStatusData.cpp) (revision 720d1051f9f5fef2d82f3878454550e9e2c5ca92) @@ -29,11 +29,11 @@ bool MAlarmStatus::fromByteArray(const QByteArray &vByteArray, int *vIndex) { int index = 0; // message data start position - if ( ! GetValue(vByteArray, index, _data.mState ) ) goto lError; - if ( ! GetValue(vByteArray, index, _data.mTop ) ) goto lError; - if ( ! GetValue(vByteArray, index, _data.mEscalatesIn ) ) goto lError; - if ( ! GetValue(vByteArray, index, _data.mMuteTimeout ) ) goto lError; - if ( ! GetBits (vByteArray, index, _data.mFlags ,GuiAlarmFlags::NUM_OF_ALARM_STATE_FLAG_BIT_POS) ) goto lError; + if ( ! GetValue(vByteArray, index, _data.mState )) goto lError; + if ( ! GetValue(vByteArray, index, _data.mTop )) goto lError; + if ( ! GetValue(vByteArray, index, _data.mEscalatesIn )) goto lError; + if ( ! GetValue(vByteArray, index, _data.mMuteTimeout )) goto lError; + if ( ! GetBits (vByteArray, index, _data.mFlags ,GuiAlarmFlags::NUM_OF_ALARM_STATE_FLAG_BIT_POS )) goto lError; return true;