X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathNumber.cpp;h=6a67ce18d75d92840db8f46c808a0834f6bf627d;hb=704328d3488c75733ddeb9ad5439b1907e323e39;hp=eb2e85bdc73de6618f4c1915b0b0a7257aefef52;hpb=8a0134cc8ce7de41d6d6911a1c4219ca958f2b71;p=lyx.git diff --git a/src/mathed/InsetMathNumber.cpp b/src/mathed/InsetMathNumber.cpp index eb2e85bdc7..6a67ce18d7 100644 --- a/src/mathed/InsetMathNumber.cpp +++ b/src/mathed/InsetMathNumber.cpp @@ -67,10 +67,15 @@ void InsetMathNumber::octave(OctaveStream & os) const } -docstring InsetMathNumber::mathmlize(MathStream & os) const +void InsetMathNumber::mathmlize(MathStream & os) const { - os << " " << str_ << " "; - return docstring(); + os << "" << str_ << ""; +} + + +void InsetMathNumber::htmlize(HtmlStream & os) const +{ + os << str_; }