]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_numberinset.C
Get rid of lyxstring, remove usage of STRCONV.
[lyx.git] / src / mathed / math_numberinset.C
index d53409630d9a807439934cbca550e4948e22d47f..d93cdbc3197afcc96366729db8a597d94eb7b049 100644 (file)
@@ -1,11 +1,21 @@
-#include <config.h>
+/**
+ * \file math_numberinset.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_numberinset.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 #include "math_support.h"
-#include "debug.h"
+
+using std::auto_ptr;
 
 
 MathNumberInset::MathNumberInset(string const & s)
@@ -13,17 +23,15 @@ MathNumberInset::MathNumberInset(string const & s)
 {}
 
 
-MathInset * MathNumberInset::clone() const
+auto_ptr<InsetBase> MathNumberInset::clone() const
 {
-       return new MathNumberInset(*this);
+       return auto_ptr<InsetBase>(new MathNumberInset(*this));
 }
 
 
-Dimension MathNumberInset::metrics(MetricsInfo & mi) const
+void MathNumberInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       Dimension dim;
        mathed_string_dim(mi.base.font, str_, dim);
-       return dim;
 }