summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-03-04 16:58:06 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-03-04 16:58:06 +0000
commit4a62022f7fd624e0408a7ef3db911c2756bf361a (patch)
treeda02179d024e3a121bcee0fd8445e0cac0c0f9eb /writerfilter
parented9a4f3f36f6195800c41d1aa40a7969bd57637a (diff)
cppcheck: this can be const
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/FormControlHelper.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/writerfilter/source/dmapper/FormControlHelper.hxx b/writerfilter/source/dmapper/FormControlHelper.hxx
index 41e4f0df3204..a56597f5becb 100644
--- a/writerfilter/source/dmapper/FormControlHelper.hxx
+++ b/writerfilter/source/dmapper/FormControlHelper.hxx
@@ -50,7 +50,7 @@ public:
bool insertControl(uno::Reference<text::XTextRange> xTextRange);
bool processField(uno::Reference<text::XFormField> xFormField);
- bool hasFFDataHandler() { return (m_pFFData != NULL); }
+ bool hasFFDataHandler() const { return (m_pFFData != NULL); }
private:
FFDataHandler::Pointer_t m_pFFData;
struct FormControlHelper_Impl;