From c0ab75edbf881514dce5a4198e095bca835290d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=CA=B3=20Pierre-=C3=89douard=20Cailliau?= Date: Wed, 26 Jan 2022 14:57:33 +0100 Subject: [PATCH] Correct mistake. --- src/meshlabplugins/io_base/save_project.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshlabplugins/io_base/save_project.cpp b/src/meshlabplugins/io_base/save_project.cpp index e52cdf522..85b2cbf24 100644 --- a/src/meshlabplugins/io_base/save_project.cpp +++ b/src/meshlabplugins/io_base/save_project.cpp @@ -26,7 +26,7 @@ QDomElement matrix44mToXML(const Matrix44m &m, bool binary, QDomDocument &doc) std::copy(m.V(), m.V() + 16u, std::ostream_iterator(matrix, " ")); //std::experimental::make_ostream_joiner(matrix, ", ")); // with - nd = doc.createTextNode(matrix.str()); + nd = doc.createTextNode(QString(matrix.str())); } matrixElem.appendChild(nd);