]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_splitinset.C
architectural changes to tex2lyx
[lyx.git] / src / mathed / math_splitinset.C
index 9fb25c670b9fb48744fc24ecc3107ac9334be58c..8f752680860c6f416d21f4c5c3efae78c4418fba 100644 (file)
@@ -1,11 +1,9 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "math_splitinset.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
 
+using std::auto_ptr;
+
 
 MathSplitInset::MathSplitInset(string const & name)
        : MathGridInset(1, 1), name_(name)
@@ -14,9 +12,9 @@ MathSplitInset::MathSplitInset(string const & name)
 }
 
 
-MathInset * MathSplitInset::clone() const
+auto_ptr<InsetBase> MathSplitInset::clone() const
 {
-       return new MathSplitInset(*this);
+       return auto_ptr<InsetBase>(new MathSplitInset(*this));
 }