mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 21:40:19 +00:00
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:
parent
33dfba918b
commit
d8053e2683
@ -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";
|
||||
|
@ -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; }
|
||||
|
Loading…
Reference in New Issue
Block a user