]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_lefteqninset.C
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_lefteqninset.C
index f9a8863de50e423f5e40a5b4e5cbc9d9a3eea059..46771075a9dfc11bfef616edb983709084d390e9 100644 (file)
 #include <config.h>
 
 #include "math_lefteqninset.h"
+#include "math_data.h"
 #include "support/std_ostream.h"
 
+
+using std::string;
 using std::auto_ptr;
 
 
@@ -21,7 +24,7 @@ MathLefteqnInset::MathLefteqnInset()
 {}
 
 
-auto_ptr<InsetBase> MathLefteqnInset::clone() const
+auto_ptr<InsetBase> MathLefteqnInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathLefteqnInset(*this));
 }
@@ -29,12 +32,12 @@ auto_ptr<InsetBase> MathLefteqnInset::clone() const
 
 void MathLefteqnInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       cell(0).metrics(mi);
-       dim_.asc = cell(0).ascent() + 2;
-       dim_.des = cell(0).descent() + 2;
-       dim_.wid = 4;
-       metricsMarkers();
-       dim = dim_;
+       cell(0).metrics(mi, dim);
+       dim.asc += 2;
+       dim.des += 2;
+       dim.wid = 4;
+       metricsMarkers(dim);
+       dim_ = dim;
 }