Index: sources/model/hd/adjustment/MAdjustRequestsBase.h =================================================================== diff -u -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 -r57ea732311e6f4c746974f5a52316f63dec23ca8 --- sources/model/hd/adjustment/MAdjustRequestsBase.h (.../MAdjustRequestsBase.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) +++ sources/model/hd/adjustment/MAdjustRequestsBase.h (.../MAdjustRequestsBase.h) (revision 57ea732311e6f4c746974f5a52316f63dec23ca8) @@ -51,7 +51,7 @@ QString senderID = "UI,"; QString mString = senderID + vStringPrefix; for( const auto ¶meter : vParameters ) { - if (static_cast(parameter.type()) == QMetaType::Float) // Qt has a mixed definition of QVariant::Type and QMetaType seems like a not fixed issue. + if (parameter.typeId() == QMetaType::Float) // Qt has a mixed definition of QVariant::Type and QMetaType seems like a not fixed issue. #ifdef ROUND_FLOATS mString += delimiter + QString("%1").arg(parameter.toFloat(),0,'f',precision); #else