summaryrefslogtreecommitdiff
path: root/stoc/source/uriproc/UriReference.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-10-08 09:09:08 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-10-08 11:09:03 +0200
commit0ddf3e0a628599d01356cb5262b93faca073ee9f (patch)
treee0b1a75ffb25f77156ad99c4627555e9a17b25f7 /stoc/source/uriproc/UriReference.hxx
parentb5d5032ce9b40cdca233f6f8951fa056262ec041 (diff)
loplugin:constfields in stoc..svgio
Change-Id: Icfd936fe9b83e0e122af5b09f7ed6dde2ead4400 Reviewed-on: https://gerrit.libreoffice.org/61512 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'stoc/source/uriproc/UriReference.hxx')
-rw-r--r--stoc/source/uriproc/UriReference.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/stoc/source/uriproc/UriReference.hxx b/stoc/source/uriproc/UriReference.hxx
index b117b5710955..0c60636a8e56 100644
--- a/stoc/source/uriproc/UriReference.hxx
+++ b/stoc/source/uriproc/UriReference.hxx
@@ -89,14 +89,14 @@ public:
void clearFragment();
osl::Mutex m_mutex;
- OUString m_scheme;
- OUString m_authority;
+ OUString const m_scheme;
+ OUString const m_authority;
OUString m_path;
- OUString m_query;
+ OUString const m_query;
OUString m_fragment;
- bool m_isHierarchical;
- bool m_hasAuthority;
- bool m_hasQuery;
+ bool const m_isHierarchical;
+ bool const m_hasAuthority;
+ bool const m_hasQuery;
bool m_hasFragment;
private: