]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macroarg.C
bug + spped fixes + small stuff
[lyx.git] / src / mathed / math_macroarg.C
index 58b0c76e48d1e0987fc0f084c3000d7753a3520c..5073c37087aab4f7764ecbef34a25d9e4cea0043 100644 (file)
@@ -1,11 +1,24 @@
+/**
+ * \file math_macroarg.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_macroarg.h"
 #include "math_macro.h"
 #include "math_mathmlstream.h"
 #include "math_support.h"
 #include "debug.h"
 
-
 using std::endl;
+using std::auto_ptr;
 
 
 MathMacroArgument::MathMacroArgument(int n)
@@ -21,9 +34,9 @@ MathMacroArgument::MathMacroArgument(int n)
 }
 
 
-InsetBase * MathMacroArgument::clone() const
+auto_ptr<InsetBase> MathMacroArgument::clone() const
 {
-       return new MathMacroArgument(*this);
+       return auto_ptr<InsetBase>(new MathMacroArgument(*this));
 }