]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_substackinset.C
more IU
[lyx.git] / src / mathed / math_substackinset.C
index bd4cf9eaf2eebb28fd857a76f2a53be85ce943bd..4767f3402e6eced3d7a3b8b423664ac035868047 100644 (file)
@@ -1,9 +1,21 @@
+/**
+ * \file math_substackinset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #include <config.h>
 
 #include "math_substackinset.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_streamstr.h"
-#include "support/LOstream.h"
+#include "support/std_ostream.h"
+
+using std::auto_ptr;
 
 
 MathSubstackInset::MathSubstackInset()
@@ -11,13 +23,13 @@ MathSubstackInset::MathSubstackInset()
 {}
 
 
-MathInset * MathSubstackInset::clone() const
+auto_ptr<InsetBase> MathSubstackInset::clone() const
 {
-       return new MathSubstackInset(*this);
+       return auto_ptr<InsetBase>(new MathSubstackInset(*this));
 }
 
 
-Dimension MathSubstackInset::metrics(MetricsInfo & mi) const
+void MathSubstackInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        if (mi.base.style == LM_ST_DISPLAY) {
                StyleChanger dummy(mi.base, LM_ST_TEXT);
@@ -26,7 +38,7 @@ Dimension MathSubstackInset::metrics(MetricsInfo & mi) const
                MathGridInset::metrics(mi);
        }
        metricsMarkers();
-       return dim_;
+       dim = dim_;
 }