]> 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 1113671d0cfb9851bbcd685baa81eebb9f463eb4..790871ccbe1204683796be45d5e66d7bf47b6699 100644 (file)
@@ -1,12 +1,23 @@
+/**
+ * \file math_commentinset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #include <config.h>
 
 #include "math_commentinset.h"
 #include "math_data.h"
-#include "math_support.h"
 #include "math_mathmlstream.h"
-#include "LaTeXFeatures.h"
-#include "support/LOstream.h"
-#include "textpainter.h"
+#include "math_support.h"
+#include "support/std_ostream.h"
+
+using std::string;
+using std::auto_ptr;
 
 
 MathCommentInset::MathCommentInset()
@@ -21,17 +32,17 @@ MathCommentInset::MathCommentInset(string const & str)
 }
 
 
-InsetBase * MathCommentInset::clone() const
+auto_ptr<InsetBase> MathCommentInset::doClone() const
 {
-       return new MathCommentInset(*this);
+       return auto_ptr<InsetBase>(new MathCommentInset(*this));
 }
 
 
 void MathCommentInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       cell(0).metrics(mi);
-       metricsMarkers();
-       dim = dim_;
+       cell(0).metrics(mi, dim);
+       metricsMarkers(dim);
+       dim_ = dim;
 }