X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathFBox.cpp;h=de0e3559f1450ce10d0ad67a1ac623880160e08d;hb=e0d54dd3b497b78094ea16ab0f38ccdc8c1642e2;hp=135395bccb9bac0b94856624e749e8792fee34f5;hpb=6e3a75969b97a5db4c80c46be49d4deb122abfe7;p=lyx.git diff --git a/src/mathed/InsetMathFBox.cpp b/src/mathed/InsetMathFBox.cpp index 135395bccb..de0e3559f1 100644 --- a/src/mathed/InsetMathFBox.cpp +++ b/src/mathed/InsetMathFBox.cpp @@ -11,9 +11,9 @@ #include #include "InsetMathFBox.h" -#include "MathArray.h" +#include "MathData.h" #include "MathStream.h" -#include "LColor.h" +#include "Color.h" #include "support/std_ostream.h" #include "frontends/Painter.h" @@ -29,9 +29,9 @@ InsetMathFBox::InsetMathFBox() {} -auto_ptr InsetMathFBox::doClone() const +auto_ptr InsetMathFBox::doClone() const { - return auto_ptr(new InsetMathFBox(*this)); + return auto_ptr(new InsetMathFBox(*this)); } @@ -56,7 +56,7 @@ bool InsetMathFBox::metrics(MetricsInfo & mi, Dimension & dim) const void InsetMathFBox::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); FontSetChanger dummy(pi.base, "textnormal"); cell(0).draw(pi, x + 3, y); setPosCache(pi, x, y);