]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_binaryopinset.C
bug + spped fixes + small stuff
[lyx.git] / src / mathed / math_binaryopinset.C
index 71ff00f4afb4ad9122827caf50b5cc9e99937584..2530086dcf7ebadfa4a852b1ea2abb00b0039de5 100644 (file)
@@ -1,9 +1,19 @@
-#include <config.h>
+/**
+ * \file math_binaryopinset.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Alejandro Aguilar Sierra
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
+#include <config.h>
 
 #include "math_binaryopinset.h"
 #include "PainterInfo.h"
-#include "support/LOstream.h"
+#include "support/std_ostream.h"
 #include "math_support.h"
 #include "math_mathmlstream.h"
 
@@ -16,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));
 }