[qet] [892] Correction dans la classe PartPolygon : les attributs x et y etaient encore susceptibles d' etre ecrits dans un fichier . elmt avec une virgule en guise de separateur decimal.

[ Thread Index | Date Index | More lists.tuxfamily.org/qet Archives ]


Revision: 892
Author:   xavier
Date:     2010-03-13 18:08:55 +0100 (Sat, 13 Mar 2010)
Log Message:
-----------
Correction dans la classe PartPolygon : les attributs x et y etaient encore susceptibles d'etre ecrits dans un fichier .elmt avec une virgule en guise de separateur decimal.

Modified Paths:
--------------
    trunk/sources/editor/partpolygon.cpp

Modified: trunk/sources/editor/partpolygon.cpp
===================================================================
--- trunk/sources/editor/partpolygon.cpp	2010-03-13 17:00:48 UTC (rev 891)
+++ trunk/sources/editor/partpolygon.cpp	2010-03-13 17:08:55 UTC (rev 892)
@@ -77,8 +77,8 @@
 	int i = 1;
 	foreach(QPointF point, polygon()) {
 		point = mapToScene(point);
-		xml_element.setAttribute(QString("x%1").arg(i), point.x());
-		xml_element.setAttribute(QString("y%1").arg(i), point.y());
+		xml_element.setAttribute(QString("x%1").arg(i), QString("%1").arg(point.x()));
+		xml_element.setAttribute(QString("y%1").arg(i), QString("%1").arg(point.y()));
 		++ i;
 	}
 	if (!closed) xml_element.setAttribute("closed", "false");


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/