]> git.lyx.org Git - features.git/commitdiff
MathML and HTML can't handle XYArrow.
authorRichard Heck <rgheck@comcast.net>
Thu, 29 Jul 2010 15:46:26 +0000 (15:46 +0000)
committerRichard Heck <rgheck@comcast.net>
Thu, 29 Jul 2010 15:46:26 +0000 (15:46 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35027 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/InsetMathXYArrow.cpp
src/mathed/InsetMathXYArrow.h

index b0e20499036ed2f9767b12631a7d6ba0b8763ce5..69227564ee8482c0c5996a372b62973f07b72d73 100644 (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
index 75734bb856f7bfedec23c97ae13855b952d138e2..3ac717ea97b3ee6a0fda66170fcc46e72bc1d9d0 100644 (file)
@@ -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_;