Kaydet (Commit) e3f3cfa9 authored tarafından Luboš Luňák's avatar Luboš Luňák

const methods

üst 016bc9de
...@@ -4309,12 +4309,12 @@ DocxExport& DocxAttributeOutput::GetExport() ...@@ -4309,12 +4309,12 @@ DocxExport& DocxAttributeOutput::GetExport()
return m_rExport; return m_rExport;
} }
bool DocxAttributeOutput::HasFootnotes() bool DocxAttributeOutput::HasFootnotes() const
{ {
return !m_pFootnotesList->isEmpty(); return !m_pFootnotesList->isEmpty();
} }
bool DocxAttributeOutput::HasEndnotes() bool DocxAttributeOutput::HasEndnotes() const
{ {
return !m_pEndnotesList->isEmpty(); return !m_pEndnotesList->isEmpty();
} }
......
...@@ -616,10 +616,10 @@ public: ...@@ -616,10 +616,10 @@ public:
::sax_fastparser::FSHelperPtr GetSerializer( ) { return m_pSerializer; } ::sax_fastparser::FSHelperPtr GetSerializer( ) { return m_pSerializer; }
/// Do we have any footnotes? /// Do we have any footnotes?
bool HasFootnotes(); bool HasFootnotes() const;
/// Do we have any endnotes? /// Do we have any endnotes?
bool HasEndnotes(); bool HasEndnotes() const;
/// Output the content of the footnotes.xml resp. endnotes.xml /// Output the content of the footnotes.xml resp. endnotes.xml
void FootnotesEndnotes( bool bFootnotes ); void FootnotesEndnotes( bool bFootnotes );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment