]> git.lyx.org Git - features.git/commitdiff
Restore InsetQuote.
authorRichard Heck <rgheck@comcast.net>
Thu, 19 Nov 2009 23:02:47 +0000 (23:02 +0000)
committerRichard Heck <rgheck@comcast.net>
Thu, 19 Nov 2009 23:02:47 +0000 (23:02 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32109 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetQuotes.cpp
src/insets/InsetQuotes.h

index b287c28dfd98a97904e0467f90db397ebec32e3f..5ec5fa53fca513344afc7ecaefa7ffa30b18d5f1 100644 (file)
@@ -22,6 +22,7 @@
 #include "LyXRC.h"
 #include "MetricsInfo.h"
 #include "OutputParams.h"
+#include "output_xhtml.h"
 
 #include "frontends/FontMetrics.h"
 #include "frontends/Painter.h"
@@ -314,9 +315,9 @@ int InsetQuotes::docbook(odocstream & os, OutputParams const &) const
 }
 
 
-docstring InsetQuotes::xhtml(odocstream & os, OutputParams const & op) const
+docstring InsetQuotes::xhtml(XHTMLStream & xs, OutputParams const & op) const
 {
-       docbook(os, op);
+       docbook(xs.os(), op);
        return docstring();
 }
 
index ef7beec21d1a16f85cc870dc9ec42bd4270482c5..0cc463e4c27723fcaf4a2542a2072b327bc163bf 100644 (file)
@@ -84,7 +84,7 @@ public:
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
-       docstring xhtml(odocstream &, OutputParams const &) const;
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
 
        /// the string that is passed to the TOC
        void tocString(odocstream &) const;