Add a fixme, in effect, about dots.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32550 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-12-16 17:12:58 +00:00
parent 05f1f323de
commit 1a74f3d103
2 changed files with 8 additions and 0 deletions

View File

@ -85,4 +85,10 @@ void InsetMathDots::validate(LaTeXFeatures & features) const
}
// FIXME XHTML
void InsetMathDots::mathmlize(MathStream & os) const
{
InsetMath::mathmlize(os);
}
} // namespace lyx

View 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_;