]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathColor.cpp
Add \makeat switches to babel settings if necessary.
[lyx.git] / src / mathed / InsetMathColor.cpp
index 076a1afd67c9004f757115509f204e982e45388c..7d005621e6aeee9f42657017019bb7517cbd6495 100644 (file)
@@ -10,7 +10,7 @@
 
 #include <config.h>
 
-#include "Color.h"
+#include "ColorSet.h"
 
 #include "InsetMathColor.h"
 #include "LaTeXFeatures.h"
 
 namespace lyx {
 
-InsetMathColor::InsetMathColor(bool oldstyle, ColorCode color)
-       : InsetMathNest(1), oldstyle_(oldstyle),
+InsetMathColor::InsetMathColor(Buffer * buf, bool oldstyle, ColorCode color)
+       : InsetMathNest(buf, 1), oldstyle_(oldstyle),
          color_(from_utf8(lcolor.getLaTeXName(color)))
 {}
 
 
-InsetMathColor::InsetMathColor(bool oldstyle, docstring const & color)
-       : InsetMathNest(1), oldstyle_(oldstyle), color_(color)
+InsetMathColor::InsetMathColor(Buffer * buf, bool oldstyle,
+               docstring const & color)
+       : InsetMathNest(buf, 1), oldstyle_(oldstyle), color_(color)
 {}