]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_binaryopinset.C
mathed uglyfication
[lyx.git] / src / mathed / math_binaryopinset.C
index 7d7586d0485579c3e5a74fe828cdee3c64ea0ab1..2530086dcf7ebadfa4a852b1ea2abb00b0039de5 100644 (file)
@@ -13,7 +13,7 @@
 
 #include "math_binaryopinset.h"
 #include "PainterInfo.h"
-#include "support/LOstream.h"
+#include "support/std_ostream.h"
 #include "math_support.h"
 #include "math_mathmlstream.h"
 
@@ -26,9 +26,9 @@ MathBinaryOpInset::MathBinaryOpInset(char op)
 {}
 
 
-InsetBase * MathBinaryOpInset::clone() const
+auto_ptr<InsetBase> MathBinaryOpInset::clone() const
 {
-       return new MathBinaryOpInset(*this);
+       return auto_ptr<InsetBase>(new MathBinaryOpInset(*this));
 }