From 8662b97cae676d68c9f1e59fbce93108e572e7c2 Mon Sep 17 00:00:00 2001 From: Luigi Malomo Date: Thu, 18 Nov 2021 16:48:47 +0100 Subject: [PATCH] removed qt deprecation waring --- src/meshlabplugins/io_txt/io_txt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshlabplugins/io_txt/io_txt.cpp b/src/meshlabplugins/io_txt/io_txt.cpp index 44a7d6070..4fc6a6195 100755 --- a/src/meshlabplugins/io_txt/io_txt.cpp +++ b/src/meshlabplugins/io_txt/io_txt.cpp @@ -164,7 +164,7 @@ bool parseTXT(QString filename, CMeshO &m, int rowToSkip, int dataSeparator, int { // reading and tokenizing freshLine = QString(impFile.readLine()).simplified(); - tokenizedLine = freshLine.split(separator, QString::SkipEmptyParts); + tokenizedLine = freshLine.split(separator, Qt::SkipEmptyParts); switch(dataFormat) {