]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sqrtinset.C
enable direct input of #1...#9; some whitespace changes
[lyx.git] / src / mathed / math_sqrtinset.C
index 65337dc5c63284a8083be01a4f4e01568aeccaf6..684049e769febd9e9c1be11c85c3717befba8101 100644 (file)
@@ -39,21 +39,19 @@ void MathSqrtInset::draw(Painter & pain, int x, int y) const
        xp[1] = x + 8;      yp[1] = y - a + 1;
        xp[2] = x + 5;      yp[2] = y + d - 1;
        xp[3] = x;          yp[3] = y + (d - a)/2;
-       pain.lines(xp, yp, 4, LColor::mathline);
+       pain.lines(xp, yp, 4, LColor::math);
 }
 
 
-void MathSqrtInset::write(MathWriteInfo & os) const
+void MathSqrtInset::write(WriteStream & os) const
 {
        os << "\\sqrt{" << cell(0) << '}';
 }
 
 
-void MathSqrtInset::writeNormal(NormalStream & os) const
+void MathSqrtInset::normalize(NormalStream & os) const
 {
-       os << "[sqrt ";
-       cell(0).writeNormal(os); 
-       os << "]";
+       os << "[sqrt " << cell(0) << ']';
 }
 
 
@@ -65,5 +63,5 @@ void MathSqrtInset::maplize(MapleStream & os) const
 
 void MathSqrtInset::mathmlize(MathMLStream & os) const
 {
-       os << "<msqrt>" << cell(0) << "</msqrt>";
+       os << MTag("msqrt") << cell(0) << ETag("msqrt");
 }