]> 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 ce318085a2878d00a242a786e1c77a4c4026ec2f..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)
 }
 
 
-MathInset * MathMacroArgument::clone() const
+auto_ptr<InsetBase> MathMacroArgument::clone() const
 {
-       return new MathMacroArgument(*this);
+       return auto_ptr<InsetBase>(new MathMacroArgument(*this));
 }
 
 
@@ -33,13 +46,13 @@ void MathMacroArgument::write(WriteStream & os) const
 }
 
 
-Dimension MathMacroArgument::metrics(MetricsInfo & mi) const
+void MathMacroArgument::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        if (expanded_)
                cell(0).metrics(mi, dim_);
        else
                mathed_string_dim(mi.base.font, str_, dim_);
-       return dim_;
+       dim = dim_;
 }