]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_commentinset.C
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_commentinset.C
index 7c7400e3a1617a3acc75214819a127e8615887c2..8c9247cb4342db6b18adeb456fb9ec7f33c8d415 100644 (file)
@@ -1,12 +1,14 @@
 #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"
 
+using std::auto_ptr;
 
 
 MathCommentInset::MathCommentInset()
@@ -17,21 +19,21 @@ MathCommentInset::MathCommentInset()
 MathCommentInset::MathCommentInset(string const & str)
        : MathNestInset(1)
 {
-       cell(0) = asArray(str);
+       asArray(str, cell(0));
 }
 
 
-MathInset * MathCommentInset::clone() const
+auto_ptr<InsetBase> MathCommentInset::clone() const
 {
-       return new MathCommentInset(*this);
+       return auto_ptr<InsetBase>(new MathCommentInset(*this));
 }
 
 
-Dimension MathCommentInset::metrics(MetricsInfo & mi) const
+void MathCommentInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        cell(0).metrics(mi);
        metricsMarkers();
-       return dim_;
+       dim = dim_;
 }