X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSpace.cpp;h=eab748dfdac6fe62bb56e40d39d459d2026d4f42;hb=e54ae72e5fac6f750c3f7972c74bb42b57f3a049;hp=41ede3c4d32176bd5158870cdf2bae6efb693c3b;hpb=6e3a75969b97a5db4c80c46be49d4deb122abfe7;p=lyx.git diff --git a/src/mathed/InsetMathSpace.cpp b/src/mathed/InsetMathSpace.cpp index 41ede3c4d3..eab748dfda 100644 --- a/src/mathed/InsetMathSpace.cpp +++ b/src/mathed/InsetMathSpace.cpp @@ -11,11 +11,11 @@ #include #include "InsetMathSpace.h" -#include "MathArray.h" +#include "MathData.h" #include "MathStream.h" #include "LaTeXFeatures.h" -#include "LColor.h" +#include "Color.h" #include "frontends/Painter.h" @@ -75,9 +75,9 @@ InsetMathSpace::InsetMathSpace(docstring const & name) } -auto_ptr InsetMathSpace::doClone() const +auto_ptr InsetMathSpace::doClone() const { - return auto_ptr(new InsetMathSpace(*this)); + return auto_ptr(new InsetMathSpace(*this)); } @@ -109,7 +109,7 @@ void InsetMathSpace::draw(PainterInfo & pi, int x, int y) const xp[2] = x + w - 2; yp[2] = y; xp[3] = x + w - 2; yp[3] = y - 3; - pi.pain.lines(xp, yp, 4, (space_ < 3) ? LColor::latex : LColor::math); + pi.pain.lines(xp, yp, 4, (space_ < 3) ? Color::latex : Color::math); }