summaryrefslogtreecommitdiff
path: root/sdext/source/pdfimport/sax
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-10-08 13:31:40 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-10-09 10:05:02 +0200
commit565746cf861c407ae222b2284d8525b4e9a62d94 (patch)
treec8fd35b347ecb407346e3862e8033bc013048d10 /sdext/source/pdfimport/sax
parent283229f5bc27ce23456b9cbd9aff75ff44707105 (diff)
loplugin:constfields in sdext
Change-Id: Ief438d98b8117a7759282323e47c8b5283d6762a Reviewed-on: https://gerrit.libreoffice.org/61552 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sdext/source/pdfimport/sax')
-rw-r--r--sdext/source/pdfimport/sax/saxattrlist.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sdext/source/pdfimport/sax/saxattrlist.hxx b/sdext/source/pdfimport/sax/saxattrlist.hxx
index e26afcbc5237..13d86440d234 100644
--- a/sdext/source/pdfimport/sax/saxattrlist.hxx
+++ b/sdext/source/pdfimport/sax/saxattrlist.hxx
@@ -37,8 +37,8 @@ namespace pdfi
{
struct AttrEntry
{
- OUString m_aName;
- OUString m_aValue;
+ OUString const m_aName;
+ OUString const m_aValue;
AttrEntry( const OUString& i_rName, const OUString& i_rValue )
: m_aName( i_rName ), m_aValue( i_rValue ) {}