From: Richard Heck Date: Thu, 29 Jul 2010 15:46:26 +0000 (+0000) Subject: MathML and HTML can't handle XYArrow. X-Git-Tag: 2.0.0~2887 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=f1d941098cd4d7c2040251e3931350b192bbeb2e;p=features.git MathML and HTML can't handle XYArrow. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35027 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/InsetMathXYArrow.cpp b/src/mathed/InsetMathXYArrow.cpp index b0e2049903..69227564ee 100644 --- a/src/mathed/InsetMathXYArrow.cpp +++ b/src/mathed/InsetMathXYArrow.cpp @@ -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 diff --git a/src/mathed/InsetMathXYArrow.h b/src/mathed/InsetMathXYArrow.h index 75734bb856..3ac717ea97 100644 --- a/src/mathed/InsetMathXYArrow.h +++ b/src/mathed/InsetMathXYArrow.h @@ -50,6 +50,10 @@ public: MathData const & sourceCell() const; /// InsetCode lyxCode() const { return MATH_XYARROW_CODE; } + /// + void mathmlize(MathStream &) const; + /// + void htmlize(HtmlStream &) const; /// bool up_;