summaryrefslogtreecommitdiff
path: root/sdext/source/pdfimport/sax/saxattrlist.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-03-12 09:36:30 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-03-12 09:34:21 +0100
commit6aff77cb30e7c73109684a72ccddf7a28605afcb (patch)
tree5e39275f7ffe398931ed73db91534db320b814b7 /sdext/source/pdfimport/sax/saxattrlist.hxx
parent32097c33d7de74ed89a01e88d69b6ff0d1482512 (diff)
Revert "loplugin:constfields in sdext"
This reverts commit 565746cf861c407ae222b2284d8525b4e9a62d94. Now that we know that making fields has negative side effects like disabling assignment operator generation. Change-Id: I3c98d9a3049b581fe10113708b13d483c5bd85e1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90369 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sdext/source/pdfimport/sax/saxattrlist.hxx')
-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 13d86440d234..e26afcbc5237 100644
--- a/sdext/source/pdfimport/sax/saxattrlist.hxx
+++ b/sdext/source/pdfimport/sax/saxattrlist.hxx
@@ -37,8 +37,8 @@ namespace pdfi
{
struct AttrEntry
{
- OUString const m_aName;
- OUString const m_aValue;
+ OUString m_aName;
+ OUString m_aValue;
AttrEntry( const OUString& i_rName, const OUString& i_rValue )
: m_aName( i_rName ), m_aValue( i_rValue ) {}