]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_liminset.C
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_liminset.C
index 3dd05b6997a164dc274a6681631ba1669827c351..353db5c4033b2cfbb5fd713d3746aef3252ee5de 100644 (file)
@@ -1,3 +1,4 @@
+#include <config.h>
 
 #include "math_liminset.h"
 #include "math_support.h"
@@ -5,6 +6,9 @@
 #include "math_symbolinset.h"
 #include "debug.h"
 
+using std::auto_ptr;
+using std::endl;
+
 
 MathLimInset::MathLimInset
        (MathArray const & f, MathArray const & x, MathArray const & x0)
@@ -16,9 +20,9 @@ MathLimInset::MathLimInset
 }
 
 
-MathInset * MathLimInset::clone() const
+auto_ptr<InsetBase> MathLimInset::clone() const
 {
-       return new MathLimInset(*this);
+       return auto_ptr<InsetBase>(new MathLimInset(*this));
 }
 
 
@@ -28,16 +32,15 @@ void MathLimInset::normalize(NormalStream & os) const
 }
 
 
-Dimension MathLimInset::metrics(MetricsInfo &) const
+void MathLimInset::metrics(MetricsInfo &, Dimension &) const
 {
-       lyxerr << "should not happen\n";
-       return Dimension();
+       lyxerr << "should not happen" << endl;
 }
 
 
 void MathLimInset::draw(PainterInfo &, int, int) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }
 
 
@@ -61,5 +64,5 @@ void MathLimInset::mathmlize(MathMLStream & os) const
 
 void MathLimInset::write(WriteStream &) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }