X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathExFunc.cpp;h=e4e1f10c2e2b8daa099bcb490185c58828f1a798;hb=2de30c62f8d671a8c8d4d52a6a7310e2c5ca84de;hp=61b3a43f165749e2435247433619a0f442cd3abb;hpb=ab2a59b0a1adc12b8b292d04795fbf50b8bc6ebf;p=lyx.git diff --git a/src/mathed/InsetMathExFunc.cpp b/src/mathed/InsetMathExFunc.cpp index 61b3a43f16..e4e1f10c2e 100644 --- a/src/mathed/InsetMathExFunc.cpp +++ b/src/mathed/InsetMathExFunc.cpp @@ -44,7 +44,7 @@ Inset * InsetMathExFunc::clone() const void InsetMathExFunc::metrics(MetricsInfo & mi, Dimension & dim) const { - mathed_string_dim(mi.base.font, name_, dim); + metricsStrRedBlack(mi, dim, name_); } @@ -122,6 +122,19 @@ void InsetMathExFunc::mathematica(MathematicaStream & os) const } +void InsetMathExFunc::mathmlize(MathStream & os) const +{ + os << "" << name_ << ""; + os << cell(0); +} + + +void InsetMathExFunc::htmlize(HtmlStream & os) const +{ + os << name_ << cell(0); +} + + void InsetMathExFunc::octave(OctaveStream & os) const { os << name_ << '(' << cell(0) << ')';