]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macroarg.h
small up/down tweaking
[lyx.git] / src / mathed / math_macroarg.h
index cb45e631003c8f55b4ff0e146d5b8fbe9d25b1d2..acbf8fd90a1ea2b3aea23559635f36bd0cafc020 100644 (file)
@@ -9,20 +9,22 @@
 #endif
 
 /** A macro argument
-    \author Alejandro Aguilar Sierra
+ *  \author Alejandro Aguilar Sierra
+ *
+ * Full author contact details are available in file CREDITS
 */
 class MathMacroArgument : public MathNestInset {
 public:
        ///
-       explicit MathMacroArgument(int, MathTextCodes = LM_TC_MIN);
+       explicit MathMacroArgument(int);
        ///
        MathInset * clone() const;
        ///
        bool isActive() const { return false; }
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void metrics(MathMetricsInfo & st) const;
        ///
-       void draw(Painter &, int x, int y) const;
+       void draw(MathPainterInfo &, int x, int y) const;
        ///
        void substitute(MathMacro const & macro);
 
@@ -38,10 +40,6 @@ private:
        char str_[3];
        ///
        bool expanded_;
-       ///
-       mutable LyXFont font_;
-       ///
-       MathTextCodes code_;
 };
 
 #endif