]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathMacroArgument.cpp
* src/mathed/InsetMathHull.cpp:
[lyx.git] / src / mathed / MathMacroArgument.cpp
index b7a0273266322c57b2da3e2ade0a697f02aafa57..8988607fa6c1f5404948626d0417553d552832cd 100644 (file)
 #include "MathStream.h"
 #include "MathSupport.h"
 
-#include "debug.h"
+#include "support/debug.h"
 
 
 namespace lyx {
 
-MathMacroArgument::MathMacroArgument(size_t n)
+MathMacroArgument::MathMacroArgument(int n)
        : number_(n)
 {
        if (n < 1 || n > 9) {
@@ -43,7 +43,7 @@ Inset * MathMacroArgument::clone() const
 }
 
 
-void MathMacroArgument::setNumber(size_t n)
+void MathMacroArgument::setNumber(int n)
 {
        if (n < 1 || n > 9) {
                LYXERR0("MathMacroArgument::setNumber: wrong Argument id: " << n);