]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_unknowninset.C
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_unknowninset.C
index c350985a73140c003b960006763ed32b95160dc1..6a126c1c28ecc24e984f9b65dcb7f5d6a94750e6 100644 (file)
@@ -1,20 +1,22 @@
 #include <config.h>
 
-
 #include "math_unknowninset.h"
 #include "math_support.h"
+#include "math_atom.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 
+using std::auto_ptr;
+
 
 MathUnknownInset::MathUnknownInset(string const & nm, bool final, bool black)
        : name_(nm), final_(final), black_(black)
 {}
 
 
-MathInset * MathUnknownInset::clone() const
+auto_ptr<InsetBase> MathUnknownInset::clone() const
 {
-       return new MathUnknownInset(*this);
+       return auto_ptr<InsetBase>(new MathUnknownInset(*this));
 }
 
 
@@ -43,9 +45,9 @@ void MathUnknownInset::normalize(NormalStream & os) const
 }
 
 
-void MathUnknownInset::metrics(MetricsInfo & mi) const
+void MathUnknownInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       mathed_string_dim(mi.base.font, name_, dim_);
+       mathed_string_dim(mi.base.font, name_, dim);
 }