MathML and HTML can't handle XYArrow.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35027 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-07-29 15:46:26 +00:00
parent b520657039
commit f1d941098c
2 changed files with 15 additions and 0 deletions

View File

@ -158,4 +158,15 @@ void InsetMathXYArrow::normalize(NormalStream & os) const
} }
void InsetMathXYArrow::mathmlize(MathStream &) const
{
throw MathExportException();
}
void InsetMathXYArrow::htmlize(HtmlStream &) const
{
throw MathExportException();
}
} // namespace lyx } // namespace lyx

View File

@ -50,6 +50,10 @@ public:
MathData const & sourceCell() const; MathData const & sourceCell() const;
/// ///
InsetCode lyxCode() const { return MATH_XYARROW_CODE; } InsetCode lyxCode() const { return MATH_XYARROW_CODE; }
///
void mathmlize(MathStream &) const;
///
void htmlize(HtmlStream &) const;
/// ///
bool up_; bool up_;