]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathMacroArgument.h
Use master buffer's setting for math output type.
[lyx.git] / src / mathed / MathMacroArgument.h
index 32d0e05e2c7aaf82a75de94387da1cf0474e00e6..4a52b1a1d20fda1e63a2bae1096a095cd63f694b 100644 (file)
@@ -5,7 +5,7 @@
  * Licence details can be found in the file COPYING.
  *
  * \author Alejandro Aguilar Sierra
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -15,6 +15,8 @@
 
 #include "InsetMath.h"
 
+#include "support/docstring.h"
+
 
 namespace lyx {
 
@@ -23,17 +25,17 @@ namespace lyx {
 class MathMacroArgument : public InsetMath {
 public:
        ///
-       explicit MathMacroArgument(std::size_t);
+       explicit MathMacroArgument(int number);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo &, int x, int y) const;
        ///
-       std::size_t number() const { return number_; }
+       int number() const { return number_; }
        ///
-       void setNumber(std::size_t n);
+       void setNumber(int n);
        ///
-       InsetCode lyxCode() const { return MATHMACROARG_CODE; }
+       InsetCode lyxCode() const { return MATH_MACROARG_CODE; }
 
        ///
        void normalize(NormalStream &) const;
@@ -41,9 +43,9 @@ public:
        void write(WriteStream & os) const;
 
 private:
-       virtual Inset * clone() const;
+       Inset * clone() const;
        /// A number between 1 and 9
-       std::size_t number_;
+       int number_;
        ///
        docstring str_;
 };