Restore InsetQuote.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32109 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-11-19 23:02:47 +00:00
parent ed7172226c
commit c71a1d9185
2 changed files with 4 additions and 3 deletions

View File

@ -22,6 +22,7 @@
#include "LyXRC.h" #include "LyXRC.h"
#include "MetricsInfo.h" #include "MetricsInfo.h"
#include "OutputParams.h" #include "OutputParams.h"
#include "output_xhtml.h"
#include "frontends/FontMetrics.h" #include "frontends/FontMetrics.h"
#include "frontends/Painter.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(); return docstring();
} }

View File

@ -84,7 +84,7 @@ public:
/// ///
int docbook(odocstream &, OutputParams const &) const; 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 /// the string that is passed to the TOC
void tocString(odocstream &) const; void tocString(odocstream &) const;