X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathColor.cpp;h=c50f61360932a519e6b6f030bd369f2f07852814;hb=789745df7a8cda6cb5172ea811371d149a68e198;hp=9246f3d45973f46da82cf2a0ae9258a0a23e2dec;hpb=9daf07588f49b52eb5e2fd5e8e8a58705e2e447e;p=lyx.git diff --git a/src/mathed/InsetMathColor.cpp b/src/mathed/InsetMathColor.cpp index 9246f3d459..c50f613609 100644 --- a/src/mathed/InsetMathColor.cpp +++ b/src/mathed/InsetMathColor.cpp @@ -3,14 +3,14 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ #include -#include "Color.h" +#include "ColorSet.h" #include "InsetMathColor.h" #include "LaTeXFeatures.h" @@ -19,19 +19,24 @@ #include "MathSupport.h" #include "MetricsInfo.h" +#include "support/gettext.h" +#include "support/lstrings.h" + #include +using namespace lyx::support; namespace lyx { -InsetMathColor::InsetMathColor(bool oldstyle, ColorCode color) - : InsetMathNest(1), oldstyle_(oldstyle), +InsetMathColor::InsetMathColor(Buffer * buf, bool oldstyle, ColorCode color) + : InsetMathNest(buf, 1), w_(0), oldstyle_(oldstyle), color_(from_utf8(lcolor.getLaTeXName(color))) {} -InsetMathColor::InsetMathColor(bool oldstyle, docstring const & color) - : InsetMathNest(1), oldstyle_(oldstyle), color_(color) +InsetMathColor::InsetMathColor(Buffer * buf, bool oldstyle, + docstring const & color) + : InsetMathNest(buf, 1), w_(0), oldstyle_(oldstyle), color_(color) {} @@ -45,8 +50,6 @@ void InsetMathColor::metrics(MetricsInfo & mi, Dimension & dim) const { cell(0).metrics(mi, dim); metricsMarkers(dim); - // Cache the inset dimension. - setDimCache(mi, dim); } @@ -96,7 +99,7 @@ void InsetMathColor::normalize(NormalStream & os) const void InsetMathColor::infoize(odocstream & os) const { - os << "Color: " << color_; + os << bformat(_("Color: %1$s"), color_); }