]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_frameboxinset.C
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_frameboxinset.C
index 4e51af0c41184b4860c22351a26208f1b263acce..f077e11eb06332243263c7cec2616432f4e25dce 100644 (file)
@@ -6,19 +6,21 @@
 #include "math_streamstr.h"
 #include "frontends/Painter.h"
 
+using std::auto_ptr;
+
 
 MathFrameboxInset::MathFrameboxInset()
        : MathNestInset(3)
 {}
 
 
-MathInset * MathFrameboxInset::clone() const
+auto_ptr<InsetBase> MathFrameboxInset::clone() const
 {
-       return new MathFrameboxInset(*this);
+       return auto_ptr<InsetBase>(new MathFrameboxInset(*this));
 }
 
 
-Dimension MathFrameboxInset::metrics(MetricsInfo & mi) const
+void MathFrameboxInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        FontSetChanger dummy(mi.base, "textnormal");
        w_ = mathed_char_width(mi.base.font, '[');
@@ -27,7 +29,7 @@ Dimension MathFrameboxInset::metrics(MetricsInfo & mi) const
        dim_ += cell(1).dim();
        dim_ += cell(2).dim();
        metricsMarkers();
-       return dim_;
+       dim = dim_;
 }