]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_stackrelinset.C
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_stackrelinset.C
index befe1391b4752317884981885827cea6827db586..d5a1c5bfb5b600431115eea45f9304b4c4ab4f36 100644 (file)
@@ -11,8 +11,8 @@
 #include <config.h>
 
 #include "math_stackrelinset.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_support.h"
 
 
 using std::max;
@@ -23,7 +23,7 @@ MathStackrelInset::MathStackrelInset()
 {}
 
 
-auto_ptr<InsetBase> MathStackrelInset::clone() const
+auto_ptr<InsetBase> MathStackrelInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathStackrelInset(*this));
 }
@@ -34,11 +34,11 @@ void MathStackrelInset::metrics(MetricsInfo & mi, Dimension & dim) const
        cell(1).metrics(mi);
        FracChanger dummy(mi.base);
        cell(0).metrics(mi);
-       dim_.wid = max(cell(0).width(), cell(1).width()) + 4;
-       dim_.asc = cell(1).ascent() + cell(0).height() + 4;
-       dim_.des = cell(1).descent();
-       metricsMarkers();
-       dim = dim_;
+       dim.wid = max(cell(0).width(), cell(1).width()) + 4;
+       dim.asc = cell(1).ascent() + cell(0).height() + 4;
+       dim.des = cell(1).descent();
+       metricsMarkers(dim);
+       dim_ = dim;
 }