X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmathed%2FInsetMathString.cpp;h=2a80e546bef03b5ce4ebee44e3ada37d06187c5a;hb=89120ce72238077d08c52e4558d83f9d81e7d573;hp=1597d63191705a12dd1209c4b501a8bcc1e3c3de;hpb=237c132c1e6fc720b87f2fea6deb18a8395cbe0a;p=lyx.git diff --git a/src/mathed/InsetMathString.cpp b/src/mathed/InsetMathString.cpp index 1597d63191..2a80e546be 100644 --- a/src/mathed/InsetMathString.cpp +++ b/src/mathed/InsetMathString.cpp @@ -3,7 +3,7 @@ * 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. */ @@ -11,10 +11,23 @@ #include #include "InsetMathString.h" -#include "MathStream.h" + +#include "MathFactory.h" +#include "MathExtern.h" #include "MathStream.h" #include "MathSupport.h" +#include "Encoding.h" +#include "MetricsInfo.h" + +#include "support/debug.h" +#include "support/gettext.h" +#include "support/lassert.h" +#include "support/lstrings.h" +#include "support/textutils.h" + +using lyx::support::escape; + namespace lyx { @@ -81,24 +94,16 @@ void InsetMathString::octave(OctaveStream & os) const } -void InsetMathString::mathmlize(MathStream & os) const +void InsetMathString::mathmlize(MathMLStream &) const { -/* - if (code_ == LM_TC_VAR) - os << " " << str_ << " "; - else if (code_ == LM_TC_CONST) - os << " " << str_ << " "; - else if (code_ == LM_TC_RM || code_ == LM_TC_TEXTRM) - os << " " << str_ << " "; - else -*/ - os << str_; + // useless, no doubt, but we should not be here + LATTEST(false); } -void InsetMathString::write(WriteStream & os) const +void InsetMathString::write(TeXMathStream & os) const { - os << str_; + writeString(str_, os); }