]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathBoxed.cpp
rename LColor into Color
[features.git] / src / mathed / InsetMathBoxed.cpp
index 2ff48888f771fc0aaba0674460a658a2098333e7..cac33db43548771e56b2e2e1d77aa6e3cc083adb 100644 (file)
@@ -14,7 +14,7 @@
 #include "MathData.h"
 #include "MathStream.h"
 #include "LaTeXFeatures.h"
-#include "LColor.h"
+#include "Color.h"
 
 #include "support/std_ostream.h"
 #include "frontends/Painter.h"
@@ -50,7 +50,7 @@ bool InsetMathBoxed::metrics(MetricsInfo & mi, Dimension & dim) const
 void InsetMathBoxed::draw(PainterInfo & pi, int x, int y) const
 {
        pi.pain.rectangle(x + 1, y - dim_.ascent() + 1,
-               dim_.width() - 2, dim_.height() - 2, LColor::foreground);
+               dim_.width() - 2, dim_.height() - 2, Color::foreground);
        cell(0).draw(pi, x + 3, y);
        setPosCache(pi, x, y);
 }