mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-12 03:23:12 +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
|
void InsetMathEnsureMath::infoize(odocstream & os) const
|
||||||
{
|
{
|
||||||
os << "EnsureMath";
|
os << "EnsureMath";
|
||||||
|
@ -36,6 +36,8 @@ public:
|
|||||||
///
|
///
|
||||||
void write(WriteStream & os) const;
|
void write(WriteStream & os) const;
|
||||||
///
|
///
|
||||||
|
void mathmlize(MathStream &) const;
|
||||||
|
///
|
||||||
void infoize(odocstream & os) const;
|
void infoize(odocstream & os) const;
|
||||||
///
|
///
|
||||||
InsetCode lyxCode() const { return MATH_ENSUREMATH_CODE; }
|
InsetCode lyxCode() const { return MATH_ENSUREMATH_CODE; }
|
||||||
|
Loading…
Reference in New Issue
Block a user