From: Richard Heck Date: Tue, 15 Dec 2009 13:22:38 +0000 (+0000) Subject: Remove last vestiges of pre-XHTMLStream implementation. X-Git-Tag: 2.0.0~4806 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=512215606bcceb5059e45038eb2e1b6675ec971a;p=features.git Remove last vestiges of pre-XHTMLStream implementation. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32541 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/Inset.cpp b/src/insets/Inset.cpp index 82a5426cbe..b66d6ee9e9 100644 --- a/src/insets/Inset.cpp +++ b/src/insets/Inset.cpp @@ -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 { diff --git a/src/insets/Inset.h b/src/insets/Inset.h index 66c2c40c01..58a787a53c 100644 --- a/src/insets/Inset.h +++ b/src/insets/Inset.h @@ -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 {} diff --git a/src/insets/InsetText.h b/src/insets/InsetText.h index f810a06fb1..be35505130 100644 --- a/src/insets/InsetText.h +++ b/src/insets/InsetText.h @@ -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;