]> git.lyx.org Git - features.git/commitdiff
Add a fixme, in effect, about dots.
authorRichard Heck <rgheck@comcast.net>
Wed, 16 Dec 2009 17:12:58 +0000 (17:12 +0000)
committerRichard Heck <rgheck@comcast.net>
Wed, 16 Dec 2009 17:12:58 +0000 (17:12 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32550 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/InsetMathDots.cpp
src/mathed/InsetMathDots.h

index c9233927c3309894221d07450169e3be5451980a..583fdecbf70152f4d257508c6b9b5c24b8ccfeca 100644 (file)
@@ -85,4 +85,10 @@ void InsetMathDots::validate(LaTeXFeatures & features) const
 }
 
 
+// FIXME XHTML
+void InsetMathDots::mathmlize(MathStream & os) const
+{
+       InsetMath::mathmlize(os);
+}
+
 } // namespace lyx
index ee3df2aeba7daf2432526ed1f9b4661a0ea1dbdf..4f2428712cfc2ae60838d14fa1eb68f288be2d81 100644 (file)
@@ -34,6 +34,8 @@ public:
        void validate(LaTeXFeatures & features) const;
        ///
        InsetCode lyxCode() const { return MATH_DOTS_CODE; }
+       ///
+       void mathmlize(MathStream & os) const;
 protected:
        /// cache for the thing's height
        mutable int dh_;