mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Fix compilation after 4277e8b733
This commit is contained in:
parent
4277e8b733
commit
3f317d1f2d
@ -3373,9 +3373,9 @@ docstring InsetTableCell::asString(bool intoInsets)
|
||||
}
|
||||
|
||||
|
||||
void InsetTableCell::addToToc(DocIterator const & di, bool output_active) const
|
||||
void InsetTableCell::addToToc(DocIterator const & di) const
|
||||
{
|
||||
InsetText::iterateForToc(di, output_active);
|
||||
InsetText::iterateForToc(di);
|
||||
}
|
||||
|
||||
|
||||
|
@ -69,7 +69,7 @@ public:
|
||||
///
|
||||
docstring xhtml(XHTMLStream &, OutputParams const &) const;
|
||||
///
|
||||
void addToToc(DocIterator const & di, bool output_active) const;
|
||||
void addToToc(DocIterator const & di) const;
|
||||
private:
|
||||
/// unimplemented
|
||||
InsetTableCell();
|
||||
|
@ -727,11 +727,11 @@ void InsetText::addToToc(DocIterator const & cdit) const
|
||||
{
|
||||
DocIterator dit = cdit;
|
||||
dit.push_back(CursorSlice(const_cast<InsetText &>(*this)));
|
||||
iterateForToc(dit, output_active);
|
||||
iterateForToc(dit);
|
||||
}
|
||||
|
||||
|
||||
void InsetText::iterateForToc(DocIterator const & cdit, bool output_active) const
|
||||
void InsetText::iterateForToc(DocIterator const & cdit) const
|
||||
{
|
||||
DocIterator dit = cdit;
|
||||
Toc & toc = buffer().tocBackend().toc("tableofcontents");
|
||||
|
@ -216,7 +216,7 @@ protected:
|
||||
///
|
||||
docstring getCaptionHTML(OutputParams const &) const;
|
||||
///
|
||||
void iterateForToc(DocIterator const & cdit, bool output_active) const;
|
||||
void iterateForToc(DocIterator const & cdit) const;
|
||||
private:
|
||||
///
|
||||
bool drawFrame_;
|
||||
|
Loading…
Reference in New Issue
Block a user