]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathColor.cpp
rename LColor into Color
[features.git] / src / mathed / InsetMathColor.cpp
index 5e0fed7b776ce2e397464f4d0d0894d668fd8b1a..f237eb9c4fceb05a4eb28434fa17eba6c8be7698 100644 (file)
@@ -11,7 +11,7 @@
 #include <config.h>
 
 #include "InsetMathColor.h"
-#include "MathArray.h"
+#include "MathData.h"
 #include "MathStream.h"
 #include "MathSupport.h"
 #include "LaTeXFeatures.h"
@@ -24,7 +24,7 @@ namespace lyx {
 using std::auto_ptr;
 using std::string;
 
-InsetMathColor::InsetMathColor(bool oldstyle, LColor_color const & color)
+InsetMathColor::InsetMathColor(bool oldstyle, Color_color const & color)
        : InsetMathNest(1), oldstyle_(oldstyle),
          color_(from_utf8(lcolor.getLaTeXName(color)))
 {}
@@ -54,7 +54,7 @@ bool InsetMathColor::metrics(MetricsInfo & mi, Dimension & dim) const
 
 void InsetMathColor::draw(PainterInfo & pi, int x, int y) const
 {
-       LColor_color origcol = pi.base.font.color();
+       Color_color 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);