summaryrefslogtreecommitdiff
path: root/stoc/source/uriproc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-03-13 09:59:10 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-03-14 07:54:02 +0100
commit2eb0e7594cc875dd0960822d9403b573ac00f739 (patch)
tree28ae250f91eff446da9dfafee1465be66abba2e5 /stoc/source/uriproc
parentf2193de6c39a783b1111f9825a30cf2c2fa78206 (diff)
Revert "loplugin:constfields in stoc..svgio"
This reverts commit 0ddf3e0a628599d01356cb5262b93faca073ee9f. Change-Id: I3e476399a465950defc15ac4d6199a638c4a4baf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90452 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'stoc/source/uriproc')
-rw-r--r--stoc/source/uriproc/UriReference.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/stoc/source/uriproc/UriReference.hxx b/stoc/source/uriproc/UriReference.hxx
index 2f56bfc6f7ca..9ce7d150e23d 100644
--- a/stoc/source/uriproc/UriReference.hxx
+++ b/stoc/source/uriproc/UriReference.hxx
@@ -88,13 +88,13 @@ public:
void clearFragment();
osl::Mutex m_mutex;
- OUString const m_scheme;
- OUString const m_authority;
+ OUString m_scheme;
+ OUString m_authority;
OUString m_path;
- OUString const m_query;
+ OUString m_query;
OUString m_fragment;
- bool const m_hasAuthority;
- bool const m_hasQuery;
+ bool m_hasAuthority;
+ bool m_hasQuery;
bool m_hasFragment;
private: