diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-13 11:13:36 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-13 15:18:33 +0200 |
commit | e7c6c05ae5a62e1705ffda97c5405eecd1f62a1e (patch) | |
tree | 5d812b3516f6575e2b4bda164c35e6dfb8dfdefc /writerperfect | |
parent | 79c4c5dfc1df4b8b80f7d3a6343aa6af9458819d (diff) |
loplugin:constfields in writerfilter
Change-Id: Ibe380e1fb35d9defc478d459a988f9f6df13bf35
Reviewed-on: https://gerrit.libreoffice.org/60427
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'writerperfect')
-rw-r--r-- | writerperfect/source/common/WPXSvInputStream.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/writerperfect/source/common/WPXSvInputStream.cxx b/writerperfect/source/common/WPXSvInputStream.cxx index a2692bcea395..206d3b0d27ce 100644 --- a/writerperfect/source/common/WPXSvInputStream.cxx +++ b/writerperfect/source/common/WPXSvInputStream.cxx @@ -113,13 +113,13 @@ struct OLEStreamData * This is not @c rtl::OUString, because we need to be able to * produce const char* from it. */ - rtl::OString name; + rtl::OString const name; /** librevenge name of the stream. * * This is not @c rtl::OUString, because we need to be able to * produce const char* from it. */ - rtl::OString RVNGname; + rtl::OString const RVNGname; }; typedef std::unordered_map<rtl::OUString, std::size_t> NameMap_t; @@ -287,7 +287,7 @@ struct ZipStreamData * This is not @c rtl::OUString, because we need to be able to * produce const char* from it. */ - rtl::OString aName; + rtl::OString const aName; }; /** Representation of a Zip storage. |