From b9f865d39e717d47c71440901caf1cffec63b86f Mon Sep 17 00:00:00 2001 From: Luigi Malomo Date: Thu, 18 Nov 2021 19:23:18 +0100 Subject: [PATCH] removed qt deprecation warning --- wrap/qt/shot_qt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrap/qt/shot_qt.h b/wrap/qt/shot_qt.h index e9ca0a6c..8c246d16 100644 --- a/wrap/qt/shot_qt.h +++ b/wrap/qt/shot_qt.h @@ -51,7 +51,7 @@ template shot.Extrinsics.SetTra(-tra); vcg::Matrix44 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();