]> git.lyx.org Git - features.git/commitdiff
Remove last vestiges of pre-XHTMLStream implementation.
authorRichard Heck <rgheck@comcast.net>
Tue, 15 Dec 2009 13:22:38 +0000 (13:22 +0000)
committerRichard Heck <rgheck@comcast.net>
Tue, 15 Dec 2009 13:22:38 +0000 (13:22 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32541 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/Inset.cpp
src/insets/Inset.h
src/insets/InsetText.h

index 82a5426cbe43147d609dec5f3dc8dfbea2a9c61a..b66d6ee9e969314a96cae55a2b12b5751dda17de 100644 (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
 {
index 66c2c40c01fe4c60195eeda27fa463e2981d6280..58a787a53c3e7122cd845e6eeaa9388081bedd33 100644 (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 {}
 
index f810a06fb1a023596105bd969742a87ddee701a4..be3550513019cb28ff99cd614cc81ab9702b8e04 100644 (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;