X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathFrameBox.cpp;h=2e7508fe30660530082b9542d47421638a3571ce;hb=b9765984c0e2d38b251b765cabfc9d23bf957a7a;hp=252589894129086a4c0aa047e60b431472669216;hpb=6e3a75969b97a5db4c80c46be49d4deb122abfe7;p=lyx.git diff --git a/src/mathed/InsetMathFrameBox.cpp b/src/mathed/InsetMathFrameBox.cpp index 2525898941..2e7508fe30 100644 --- a/src/mathed/InsetMathFrameBox.cpp +++ b/src/mathed/InsetMathFrameBox.cpp @@ -11,10 +11,10 @@ #include #include "InsetMathFrameBox.h" -#include "MathArray.h" +#include "MathData.h" #include "MathStream.h" #include "MathSupport.h" -#include "LColor.h" +#include "Color.h" #include "frontends/Painter.h" @@ -28,9 +28,9 @@ InsetMathFrameBox::InsetMathFrameBox() {} -auto_ptr InsetMathFrameBox::doClone() const +auto_ptr InsetMathFrameBox::doClone() const { - return auto_ptr(new InsetMathFrameBox(*this)); + return auto_ptr(new InsetMathFrameBox(*this)); } @@ -54,7 +54,7 @@ void InsetMathFrameBox::draw(PainterInfo & pi, int x, int y) const { FontSetChanger dummy(pi.base, "textnormal"); 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); x += 5; drawStrBlack(pi, x, y, from_ascii("["));