diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2011-07-08 17:02:41 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2011-07-19 13:57:04 +0200 |
commit | 0e00fc23b54bc1f93bb531a18f7e23ada5ee429b (patch) | |
tree | b4a3365134c9ae33b36cb58e9d47206223e2809d | |
parent | 74e24d9c98d1f3b333d00e78efbf081093abd8fb (diff) |
const methods
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.cxx | 4 | ||||
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index 60862138f3..8b7f0950ad 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -4309,12 +4309,12 @@ DocxExport& DocxAttributeOutput::GetExport() return m_rExport; } -bool DocxAttributeOutput::HasFootnotes() +bool DocxAttributeOutput::HasFootnotes() const { return !m_pFootnotesList->isEmpty(); } -bool DocxAttributeOutput::HasEndnotes() +bool DocxAttributeOutput::HasEndnotes() const { return !m_pEndnotesList->isEmpty(); } diff --git a/sw/source/filter/ww8/docxattributeoutput.hxx b/sw/source/filter/ww8/docxattributeoutput.hxx index 884563dd3c..a476cc5378 100644 --- a/sw/source/filter/ww8/docxattributeoutput.hxx +++ b/sw/source/filter/ww8/docxattributeoutput.hxx @@ -616,10 +616,10 @@ public: ::sax_fastparser::FSHelperPtr GetSerializer( ) { return m_pSerializer; } /// Do we have any footnotes? - bool HasFootnotes(); + bool HasFootnotes() const; /// Do we have any endnotes? - bool HasEndnotes(); + bool HasEndnotes() const; /// Output the content of the footnotes.xml resp. endnotes.xml void FootnotesEndnotes( bool bFootnotes ); |