]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_amsarrayinset.C
split inset -> inset + updatableinset
[lyx.git] / src / mathed / math_amsarrayinset.C
index 914a463db86c37a51c7207c9b0b0cd117fe87d85..ba0df89a180221f5fb682a7c9028e62e4c1f78f0 100644 (file)
@@ -1,8 +1,5 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_amsarrayinset.h"
 #include "math_mathmlstream.h"
@@ -82,16 +79,15 @@ void MathAMSArrayInset::draw(MathPainterInfo & pi, int x, int y) const
 
 void MathAMSArrayInset::write(WriteStream & os) const
 {
-       os << "\\begin{" << name_ << "}";
+       os << "\\begin{" << name_ << '}';
        MathGridInset::write(os);
-       os << "\\end{" << name_ << "}";
+       os << "\\end{" << name_ << '}';
 }
 
 
 void MathAMSArrayInset::normalize(NormalStream & os) const
 {
-       os << "[" << name_ << " ";
+       os << '[' << name_ << ' ';
        MathGridInset::normalize(os);
-       os << "]";
+       os << ']';
 }
-