X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBoxed.cpp;h=cac33db43548771e56b2e2e1d77aa6e3cc083adb;hb=5008ee540f84715cd10e87f3fa0cd5dc7b974784;hp=2ff48888f771fc0aaba0674460a658a2098333e7;hpb=06baeac0646a2d63145ff3b18a3180ca69c6b288;p=features.git diff --git a/src/mathed/InsetMathBoxed.cpp b/src/mathed/InsetMathBoxed.cpp index 2ff48888f7..cac33db435 100644 --- a/src/mathed/InsetMathBoxed.cpp +++ b/src/mathed/InsetMathBoxed.cpp @@ -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); }