Index: sources/view/VGeneralEvent.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r89e90419935eca40c818f23daa7bf75a4bb150aa --- sources/view/VGeneralEvent.cpp (.../VGeneralEvent.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/view/VGeneralEvent.cpp (.../VGeneralEvent.cpp) (revision 89e90419935eca40c818f23daa7bf75a4bb150aa) @@ -63,11 +63,12 @@ GET_VALUE(hdValue) - if( vData.mEventID == eReset ) + if( vData.mEventID == eReset ) { hdReset(QString("%1,%2") - .arg(dateTime.toString(_resetFormat)) - .arg(_hdValue.toString()) - ); + .arg(dateTime.toString(_resetFormat)) + .arg(Format::toHexString(_hdValue.toUInt(), true, 4)) + ); + } } /*! @@ -96,6 +97,6 @@ if( vData.mEventID == eReset ) dgReset(QString("%1,%2") .arg(dateTime.toString(_resetFormat)) - .arg(_dgValue.toString()) + .arg(Format::toHexString(_dgValue.toUInt(), true, 4)) ); }