X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathColor.cpp;h=7d005621e6aeee9f42657017019bb7517cbd6495;hb=704328d3488c75733ddeb9ad5439b1907e323e39;hp=f5854f3712dbead99a906e0a752d4e0e2d3dcc0a;hpb=7150b0caa381ed6872d0b6090a1057861cacfa50;p=lyx.git diff --git a/src/mathed/InsetMathColor.cpp b/src/mathed/InsetMathColor.cpp index f5854f3712..7d005621e6 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" @@ -24,14 +24,15 @@ namespace lyx { -InsetMathColor::InsetMathColor(bool oldstyle, ColorCode color) - : InsetMathNest(1), oldstyle_(oldstyle), +InsetMathColor::InsetMathColor(Buffer * buf, bool oldstyle, ColorCode color) + : InsetMathNest(buf, 1), 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), oldstyle_(oldstyle), color_(color) {}