]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_factory.C
small step forward on the lenghty path to \mbox support
[features.git] / src / mathed / math_factory.C
index 49201ac99442c92fc308347bb67b1497b29c6d7c..10f0082e764158594b56f65a7d7f48a95584d6d6 100644 (file)
@@ -2,7 +2,7 @@
 
 #include "math_parser.h"
 #include "math_binominset.h"
-//#include "math_boxinset.h"
+#include "math_boxinset.h"
 #include "math_decorationinset.h"
 #include "math_dotsinset.h"
 #include "math_funcinset.h"
@@ -63,8 +63,8 @@ MathAtom createMathInset(latexkeys const * l)
                return MathAtom(new MathSpaceInset(l->id));
        case LM_TK_DOTS:
                return MathAtom(new MathDotsInset(l->name));
-       //case LM_TK_BOX:
-       //      return MathAtom(new MathBoxInset(l->name));
+       case LM_TK_BOX:
+               return MathAtom(new MathBoxInset(l->name));
        }
        return MathAtom(new MathFuncInset(l->name));
 }