]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_lefteqninset.C
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_lefteqninset.C
index 39ac7522fa11a0ec402c8a26f0c19482f15492e4..d53cefbf0e94bd134e53e756c01f2a7cb8032bcc 100644 (file)
@@ -1,34 +1,36 @@
-
 #include "math_lefteqninset.h"
 #include "math_support.h"
 #include "support/LOstream.h"
 
+using std::auto_ptr;
+
 
 MathLefteqnInset::MathLefteqnInset()
        : MathNestInset(1)
 {}
 
 
-MathInset * MathLefteqnInset::clone() const
+auto_ptr<InsetBase> MathLefteqnInset::clone() const
 {
-       return new MathLefteqnInset(*this);
+       return auto_ptr<InsetBase>(new MathLefteqnInset(*this));
 }
 
 
-void MathLefteqnInset::metrics(MathMetricsInfo & mi) const
+void MathLefteqnInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        cell(0).metrics(mi);
-       dim_.a = cell(0).ascent() + 2;
-       dim_.d = cell(0).descent() + 2;
-       dim_.w = 4;
-       metricsMarkers2();
+       dim_.asc = cell(0).ascent() + 2;
+       dim_.des = cell(0).descent() + 2;
+       dim_.wid = 4;
+       metricsMarkers();
+       dim = dim_;
 }
 
 
-void MathLefteqnInset::draw(MathPainterInfo & pi, int x, int y) const
+void MathLefteqnInset::draw(PainterInfo & pi, int x, int y) const
 {
        cell(0).draw(pi, x + 2, y);
-       drawMarkers2(pi, x, y);
+       drawMarkers(pi, x, y);
 }