X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBrace.cpp;h=f100e383d027f22c4135cde3985ab1afe57e05ec;hb=eea79637c78bb9916031924eca7b305cfb8e83df;hp=1acc85517d657e5f302f02354730093a020e1c72;hpb=1f07a7f929d34b0d64d839d5d7963ed60e04b5a3;p=features.git diff --git a/src/mathed/InsetMathBrace.cpp b/src/mathed/InsetMathBrace.cpp index 1acc85517d..f100e383d0 100644 --- a/src/mathed/InsetMathBrace.cpp +++ b/src/mathed/InsetMathBrace.cpp @@ -14,7 +14,6 @@ #include "MathData.h" #include "MathStream.h" #include "MathSupport.h" -#include "Color.h" #include "frontends/FontMetrics.h" #include "frontends/Painter.h" @@ -58,7 +57,7 @@ void InsetMathBrace::metrics(MetricsInfo & mi, Dimension & dim) const void InsetMathBrace::draw(PainterInfo & pi, int x, int y) const { Font font = pi.base.font; - font.setColor(Color::latex); + font.setColor(Color_latex); Dimension t = theFontMetrics(font).dimension('{'); pi.pain.text(x, y, '{', font); cell(0).draw(pi, x + t.wid, y);