summaryrefslogtreecommitdiff
path: root/xmloff/source/core/DocumentSettingsContext.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-09-12 15:51:15 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-09-13 12:56:39 +0200
commit0302c9b192c3b7ba10daabed61d6864c24c14070 (patch)
tree4c17a2ff761e0513620704bd3ecceff4107d17cc /xmloff/source/core/DocumentSettingsContext.cxx
parentecf987682881258774f4ec1644474beae3366abe (diff)
loplugin:constfields in xmloff
Change-Id: I9623e6b483b28f5b50a2c76016bcc319b375a35a Reviewed-on: https://gerrit.libreoffice.org/60394 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/source/core/DocumentSettingsContext.cxx')
-rw-r--r--xmloff/source/core/DocumentSettingsContext.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/core/DocumentSettingsContext.cxx b/xmloff/source/core/DocumentSettingsContext.cxx
index 8179c5ace523..19f755fb6f29 100644
--- a/xmloff/source/core/DocumentSettingsContext.cxx
+++ b/xmloff/source/core/DocumentSettingsContext.cxx
@@ -189,7 +189,7 @@ public:
class XMLConfigItemMapIndexedContext : public XMLConfigBaseContext
{
private:
- OUString maConfigItemName;
+ OUString const maConfigItemName;
public:
XMLConfigItemMapIndexedContext(SvXMLImport& rImport, sal_uInt16 nPrfx,
@@ -253,7 +253,7 @@ namespace
{
struct SettingsGroup
{
- OUString sGroupName;
+ OUString const sGroupName;
uno::Any aSettings;
SettingsGroup( const OUString& _rGroupName, const uno::Any& _rSettings )