Restore XHTML for InsetNote.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32203 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-11-25 21:58:18 +00:00
parent 33707856c3
commit b8f05bdd50
2 changed files with 3 additions and 3 deletions

View File

@ -320,12 +320,12 @@ int InsetNote::docbook(odocstream & os, OutputParams const & runparams_in) const
} }
docstring InsetNote::xhtml(odocstream & os, OutputParams const & rp) const docstring InsetNote::xhtml(XHTMLStream & xs, OutputParams const & rp) const
{ {
if (params_.type == InsetNoteParams::Note) if (params_.type == InsetNoteParams::Note)
return docstring(); return docstring();
return InsetCollapsable::xhtml(os, rp); return InsetCollapsable::xhtml(xs, rp);
} }

View File

@ -89,7 +89,7 @@ private:
/// ///
int docbook(odocstream &, OutputParams const &) const; int docbook(odocstream &, OutputParams const &) const;
/// ///
docstring xhtml(odocstream &, OutputParams const &) const; docstring xhtml(XHTMLStream &, OutputParams const &) const;
/// ///
void validate(LaTeXFeatures &) const; void validate(LaTeXFeatures &) const;
/// ///