removed qt deprecation warning

This commit is contained in:
Luigi Malomo 2021-11-18 19:23:18 +01:00
parent 82ac1bdc87
commit b9f865d39e
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ template <class ShotType>
shot.Extrinsics.SetTra(-tra);
vcg::Matrix44<ScalarType> rot;
QStringList values = attr.namedItem("RotationMatrix").nodeValue().split(" ", QString::SkipEmptyParts);
QStringList values = attr.namedItem("RotationMatrix").nodeValue().split(" ", Qt::SkipEmptyParts);
for (int y = 0; y < 4; y++)
for (int x = 0; x < 4; x++)
rot[y][x] = values[x + 4 * y].toDouble();