Index: sources/device/DeviceModels.cpp =================================================================== diff -u -r6e18f1d24b8cc3d84d26f46f36f73deb34e54371 -r3e682c5afdadcf4dd2006e3d975fbee58e48619e --- sources/device/DeviceModels.cpp (.../DeviceModels.cpp) (revision 6e18f1d24b8cc3d84d26f46f36f73deb34e54371) +++ sources/device/DeviceModels.cpp (.../DeviceModels.cpp) (revision 3e682c5afdadcf4dd2006e3d975fbee58e48619e) @@ -230,7 +230,9 @@ // get the value QString val = vByteArray; - ok = ! val.isNull() && val.isSimpleText(); + // TODO: Qt6 port - find replacement for deprecated QString::isSimpleText(). + // ok = ! val.isNull() && val.isSimpleText(); + ok = ! val.isNull(); // check if the vExitCode passed and it has a value other than zero if ( ! ok ){ _data.mReason = Device::DeviceError::eDevice_Scripts_Error_Incorrect_Rsp_Type ; goto lError; } // there is not a valid value @@ -275,7 +277,8 @@ // get the value QString val = vByteArray; - ok = ! val.isNull() && val.isSimpleText(); + // TODO: Qt6 Port: ok = ! val.isNull() && val.isSimpleText(); + ok = ! val.isNull(); // TODO: Qt6 Port // check if the vExitCode passed and it has a value other than zero if ( ! ok ){ _data.mReason = Device::DeviceError::eDevice_Scripts_Error_Incorrect_Rsp_Type ; goto lError; } // there is not a valid value @@ -320,7 +323,8 @@ // get the value QString val = vByteArray; - ok = ! val.isNull() && val.isSimpleText(); + // TODO: Qt6 Port: ok = ! val.isNull() && val.isSimpleText(); + ok = ! val.isNull(); // TODO: Qt6 Port // check if the vExitCode passed and it has a value other than zero if ( ! ok ){ _data.mReason = Device::DeviceError::eDevice_Scripts_Error_Incorrect_Rsp_Type ; goto lError; } // there is not a valid value