]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathColor.cpp
Move Color::color enum to ColorCode.h
[lyx.git] / src / mathed / InsetMathColor.cpp
index 6f75c5b86a19bc93514172c3982669952be5e952..e69b690db8386771c64f3c5bebdc3c894afa773d 100644 (file)
@@ -10,6 +10,7 @@
 
 #include <config.h>
 
+#include "Color.h"
 #include "InsetMathColor.h"
 #include "MathData.h"
 #include "MathStream.h"
@@ -21,7 +22,7 @@
 
 namespace lyx {
 
-InsetMathColor::InsetMathColor(bool oldstyle, Color_color const & color)
+InsetMathColor::InsetMathColor(bool oldstyle, ColorCode color)
        : InsetMathNest(1), oldstyle_(oldstyle),
          color_(from_utf8(lcolor.getLaTeXName(color)))
 {}
@@ -49,7 +50,7 @@ void InsetMathColor::metrics(MetricsInfo & mi, Dimension & dim) const
 
 void InsetMathColor::draw(PainterInfo & pi, int x, int y) const
 {
-       Color_color origcol = pi.base.font.color();
+       ColorCode origcol = pi.base.font.color();
        pi.base.font.setColor(lcolor.getFromLaTeXName(to_utf8(color_)));
        cell(0).draw(pi, x + 1, y);
        pi.base.font.setColor(origcol);