]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathXYMatrix.cpp
* InsetMathHull:
[lyx.git] / src / mathed / InsetMathXYMatrix.cpp
index f8de6c7072c6230b9d5c1a6fb6fa733a13a098d4..7c6781104ac58ec34621870fbe2bbd6ae697c148 100644 (file)
 #include <config.h>
 
 #include "InsetMathXYMatrix.h"
-#include "MathStream.h"
 
 #include "LaTeXFeatures.h"
-#include "support/std_ostream.h"
+#include "MathStream.h"
+
+#include <ostream>
 
 
 namespace lyx {
 
 
-InsetMathXYMatrix::InsetMathXYMatrix(LyXLength const & s, char c)
+InsetMathXYMatrix::InsetMathXYMatrix(Length const & s, char c)
        : InsetMathGrid(1, 1), spacing_(s), spacing_code_(c)
 {}
 
 
-std::auto_ptr<InsetBase> InsetMathXYMatrix::doClone() const
+Inset * InsetMathXYMatrix::clone() const
 {
-       return std::auto_ptr<InsetBase>(new InsetMathXYMatrix(*this));
+       return new InsetMathXYMatrix(*this);
 }
 
 
@@ -43,15 +44,11 @@ int InsetMathXYMatrix::rowsep() const
 }
 
 
-bool InsetMathXYMatrix::metrics(MetricsInfo & mi, Dimension & dim) const
+void InsetMathXYMatrix::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        if (mi.base.style == LM_ST_DISPLAY)
                mi.base.style = LM_ST_TEXT;
        InsetMathGrid::metrics(mi, dim);
-       if (dim_ == dim)
-               return false;
-       dim_ = dim;
-       return true;
 }