We do not need to extract limits for MathML.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33146 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-01-21 21:01:51 +00:00
parent a36607b800
commit 51a388e745
3 changed files with 3 additions and 14 deletions

View File

@ -71,16 +71,6 @@ void InsetMathLim::mathematica(MathematicaStream & os) const
}
void InsetMathLim::mathmlize(MathStream & os) const
{
// FIXME XHTML We need a form of MTag that takes attributes.
os << "<munder>"
<< "<mo form='prefix'>" << "lim" << "</mo>"
<< "<mrow>" << cell(1) << "<mo>&rarr;</mo>" << cell(2) << "</mrow></munder>"
<< "<mo>(</mo>" << cell(0) << "<mo>)</mo>" ;
}
void InsetMathLim::write(WriteStream &) const
{
LYXERR0("should not happen");

View File

@ -40,8 +40,6 @@ public:
///
void mathematica(MathematicaStream &) const;
///
void mathmlize(MathStream &) const;
///
void write(WriteStream & os) const;
///
InsetCode lyxCode() const { return MATH_LIM_CODE; }

View File

@ -962,9 +962,10 @@ void extractStructure(MathData & ar, ExternalMath kind)
extractDiff(ar);
}
extractExps(ar);
extractLims(ar);
if (kind != MATHML)
if (kind != MATHML) {
extractLims(ar);
extractStrings(ar);
}
//lyxerr << "\nStructure to: " << ar << endl;
}