mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
Restore InsetQuote.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32109 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ed7172226c
commit
c71a1d9185
@ -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();
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user