]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathMacroArgument.h
Remove unused method in ArgumentProxy
[lyx.git] / src / mathed / MathMacroArgument.h
index 379ce09bd49ab1dbbe4c8b9a9213220e9ea411fb..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,15 +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(int n);
        ///
-       Inset::Code lyxCode() const { return MATHMACROARG_CODE; }
+       InsetCode lyxCode() const { return MATH_MACROARG_CODE; }
 
        ///
        void normalize(NormalStream &) const;
@@ -39,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_;
 };