]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fontoldinset.C
float2string #4 (Spacing)
[lyx.git] / src / mathed / math_fontoldinset.C
index 59155a49aebce37b4370ab6ded7eab384c87af69..e339c27ac3a2c668cb0441cfd3447eb3abc82809 100644 (file)
 #include <config.h>
 
 #include "math_fontoldinset.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_streamstr.h"
 #include "math_parser.h"
+#include "math_streamstr.h"
 #include "support/std_ostream.h"
 
 using std::auto_ptr;
@@ -26,7 +27,7 @@ MathFontOldInset::MathFontOldInset(latexkeys const * key)
 }
 
 
-auto_ptr<InsetBase> MathFontOldInset::clone() const
+auto_ptr<InsetBase> MathFontOldInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathFontOldInset(*this));
 }
@@ -35,9 +36,9 @@ auto_ptr<InsetBase> MathFontOldInset::clone() const
 void MathFontOldInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        FontSetChanger dummy(mi.base, key_->name.c_str());
-       cell(0).metrics(mi, dim_);
-       metricsMarkers(1);
-       dim = dim_;
+       cell(0).metrics(mi, dim);
+       metricsMarkers(dim);
+       dim_ = dim;
 }