From f1d941098cd4d7c2040251e3931350b192bbeb2e Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Thu, 29 Jul 2010 15:46:26 +0000 Subject: [PATCH] MathML and HTML can't handle XYArrow. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35027 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/InsetMathXYArrow.cpp | 11 +++++++++++ src/mathed/InsetMathXYArrow.h | 4 ++++ 2 files changed, 15 insertions(+) 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_; -- 2.39.2