]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_commentinset.C
Fix event loop to no longer eat CPU
[lyx.git] / src / mathed / math_commentinset.C
index cfe0262eb88ec2d079caaf558cedd5d6ee974d2f..790871ccbe1204683796be45d5e66d7bf47b6699 100644 (file)
 #include <config.h>
 
 #include "math_commentinset.h"
-#include "math_support.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "support/LOstream.h"
+#include "math_support.h"
+#include "support/std_ostream.h"
 
+using std::string;
 using std::auto_ptr;
 
 
@@ -30,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));
 }
@@ -38,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;
 }