Ensuring math should just be doing math in MathML.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32642 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-12-26 15:01:03 +00:00
parent 33dfba918b
commit d8053e2683
2 changed files with 8 additions and 0 deletions

View File

@ -67,6 +67,12 @@ void InsetMathEnsureMath::write(WriteStream & os) const
}
void InsetMathEnsureMath::mathmlize(MathStream & os) const
{
os << cell(0);
}
void InsetMathEnsureMath::infoize(odocstream & os) const
{
os << "EnsureMath";

View File

@ -36,6 +36,8 @@ public:
///
void write(WriteStream & os) const;
///
void mathmlize(MathStream &) const;
///
void infoize(odocstream & os) const;
///
InsetCode lyxCode() const { return MATH_ENSUREMATH_CODE; }