X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathExFunc.cpp;h=e4e1f10c2e2b8daa099bcb490185c58828f1a798;hb=2de30c62f8d671a8c8d4d52a6a7310e2c5ca84de;hp=173436eb612a7b031f1b2f862cab3cac734d297f;hpb=8a0134cc8ce7de41d6d6911a1c4219ca958f2b71;p=lyx.git diff --git a/src/mathed/InsetMathExFunc.cpp b/src/mathed/InsetMathExFunc.cpp index 173436eb61..e4e1f10c2e 100644 --- a/src/mathed/InsetMathExFunc.cpp +++ b/src/mathed/InsetMathExFunc.cpp @@ -13,7 +13,6 @@ #include "InsetMathExFunc.h" #include "MathData.h" -#include "MathExtern.h" #include "MathStream.h" #include "MathSupport.h" #include "MetricsInfo.h" @@ -45,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_); } @@ -123,10 +122,16 @@ void InsetMathExFunc::mathematica(MathematicaStream & os) const } -docstring InsetMathExFunc::mathmlize(MathStream & os) const +void InsetMathExFunc::mathmlize(MathStream & os) const { os << "" << name_ << ""; - return lyx::mathmlize(cell(0), os); + os << cell(0); +} + + +void InsetMathExFunc::htmlize(HtmlStream & os) const +{ + os << name_ << cell(0); }