X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathDFrac.cpp;h=70da736cf9f815412444c84ea753e9289bea09dc;hb=5008ee540f84715cd10e87f3fa0cd5dc7b974784;hp=5dded132b687f7d2ec0c5da8b3f5f222cb7a253d;hpb=06baeac0646a2d63145ff3b18a3180ca69c6b288;p=features.git diff --git a/src/mathed/InsetMathDFrac.cpp b/src/mathed/InsetMathDFrac.cpp index 5dded132b6..70da736cf9 100644 --- a/src/mathed/InsetMathDFrac.cpp +++ b/src/mathed/InsetMathDFrac.cpp @@ -14,7 +14,7 @@ #include "MathData.h" #include "MathStream.h" #include "LaTeXFeatures.h" -#include "LColor.h" +#include "Color.h" #include "frontends/Painter.h" @@ -56,7 +56,7 @@ void InsetMathDFrac::draw(PainterInfo & pi, int x, int y) const int m = x + dim_.wid / 2; cell(0).draw(pi, m - cell(0).width() / 2, y - cell(0).descent() - 2 - 5); cell(1).draw(pi, m - cell(1).width() / 2, y + cell(1).ascent() + 2 - 5); - pi.pain.line(x + 1, y - 5, x + dim_.wid - 2, y - 5, LColor::math); + pi.pain.line(x + 1, y - 5, x + dim_.wid - 2, y - 5, Color::math); setPosCache(pi, x, y); }