[qet] [850] Correction dans la classe PartLine : les attributs length1 et length2 etaient encore susceptibles d' etre ecrits dans un fichier . elmt avec un virgule en guise de separateur decimal.

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


Revision: 850
Author:   xavier
Date:     2010-02-14 14:01:13 +0100 (Sun, 14 Feb 2010)
Log Message:
-----------
Correction dans la classe PartLine : les attributs length1 et length2 etaient encore susceptibles d'etre ecrits dans un fichier .elmt avec un virgule en guise de separateur decimal.

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

Modified: trunk/sources/editor/partline.cpp
===================================================================
--- trunk/sources/editor/partline.cpp	2010-02-11 23:35:04 UTC (rev 849)
+++ trunk/sources/editor/partline.cpp	2010-02-14 13:01:13 UTC (rev 850)
@@ -174,9 +174,9 @@
 	xml_element.setAttribute("x2", QString("%1").arg(p2.x()));
 	xml_element.setAttribute("y2", QString("%1").arg(p2.y()));
 	xml_element.setAttribute("end1", QET::endTypeToString(first_end));
-	xml_element.setAttribute("length1", first_length);
+	xml_element.setAttribute("length1", QString("%1").arg(first_length));
 	xml_element.setAttribute("end2", QET::endTypeToString(second_end));
-	xml_element.setAttribute("length2", second_length);
+	xml_element.setAttribute("length2", QString("%1").arg(second_length));
 	
 	stylesToXml(xml_element);
 	return(xml_element);


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