]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathTabular.cpp
* src/mathed/InsetMathHull.cpp:
[lyx.git] / src / mathed / InsetMathTabular.cpp
index bb4e5c48381e21d6f152a6e0513bbdc03ce976e7..099089169908b92a318d66a24fb2375f9c7c5725 100644 (file)
@@ -20,7 +20,6 @@
 
 #include <ostream>
 
-
 namespace lyx {
 
 InsetMathTabular::InsetMathTabular(docstring const & name, int m, int n)
@@ -34,11 +33,6 @@ InsetMathTabular::InsetMathTabular(docstring const & name, int m, int n,
 {}
 
 
-InsetMathTabular::InsetMathTabular(docstring const & name, char valign,
-               docstring const & halign)
-       : InsetMathGrid(valign, halign), name_(name)
-{}
-
 
 Inset * InsetMathTabular::clone() const
 {
@@ -71,13 +65,16 @@ void InsetMathTabular::draw(PainterInfo & pi, int x, int y) const
 
 void InsetMathTabular::write(WriteStream & os) const
 {
+       ModeSpecifier specifier(os, TEXT_MODE);
+
        if (os.fragile())
                os << "\\protect";
        os << "\\begin{" << name_ << '}';
 
-       if (v_align_ == 't' || v_align_ == 'b')
-               os << '[' << char(v_align_) << ']';
-       os << '{' << halign() << "}\n";
+       char const v = verticalAlignment();
+       if (v == 't' || v == 'b')
+               os << '[' << v << ']';
+       os << '{' << horizontalAlignments() << "}\n";
 
        InsetMathGrid::write(os);