]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_commentinset.C
some (yet unfinished) up/down work
[lyx.git] / src / mathed / math_commentinset.C
index 793a806b0618ca39c905f364f0dcbe32c315569f..790871ccbe1204683796be45d5e66d7bf47b6699 100644 (file)
@@ -32,7 +32,7 @@ MathCommentInset::MathCommentInset(string const & str)
 }
 
 
-auto_ptr<InsetBase> MathCommentInset::clone() const
+auto_ptr<InsetBase> MathCommentInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathCommentInset(*this));
 }
@@ -40,9 +40,9 @@ auto_ptr<InsetBase> MathCommentInset::clone() const
 
 void MathCommentInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       cell(0).metrics(mi);
-       metricsMarkers();
-       dim = dim_;
+       cell(0).metrics(mi, dim);
+       metricsMarkers(dim);
+       dim_ = dim;
 }