X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathColor.cpp;h=7d005621e6aeee9f42657017019bb7517cbd6495;hb=c56d524cd6af5d0ed0d50fef51ab434ce418d1e0;hp=233a38090c2cb252e80453378576e3b7fef700b2;hpb=20d5148dca2f706a453b83fb413d99016e809496;p=lyx.git diff --git a/src/mathed/InsetMathColor.cpp b/src/mathed/InsetMathColor.cpp index 233a38090c..7d005621e6 100644 --- a/src/mathed/InsetMathColor.cpp +++ b/src/mathed/InsetMathColor.cpp @@ -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) {}