Remove last vestiges of pre-XHTMLStream implementation.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32541 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-12-15 13:22:38 +00:00
parent 5f27992e16
commit 512215606b
3 changed files with 0 additions and 10 deletions

View File

@ -413,11 +413,6 @@ docstring Inset::xhtml(XHTMLStream & xs, OutputParams const &) const
return docstring();
}
docstring Inset::xhtml(odocstream & od, OutputParams const &) const
{
od << "[[Inset: " << from_ascii(insetName(lyxCode())) << "]]";
return docstring();
}
bool Inset::directWrite() const
{

View File

@ -309,8 +309,6 @@ public:
/// normal stream, and which will in fact be written after the current
/// paragraph closes. this is appropriate e.g. for floats.
virtual docstring xhtml(XHTMLStream & xs, OutputParams const &) const;
// the old one, to be removed
virtual docstring xhtml(odocstream & os, OutputParams const &) const;
/// the string that is passed to the TOC
virtual void tocString(odocstream &) const {}

View File

@ -91,9 +91,6 @@ public:
///
docstring insetAsXHTML(XHTMLStream &, OutputParams const &,
XHTMLOptions) const;
// FIXME XHTMLStream to be removed
docstring xhtml(odocstream &, OutputParams const &) const
{ return docstring (); }
///
void validate(LaTeXFeatures & features) const;