diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-15 18:31:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-16 08:21:14 +0100 |
commit | 6d40302d89e1a72841c8a64733c7a26080a65cb8 (patch) | |
tree | e85fdf8b60f587e2fd016d8299dc1ced1ee650e4 /include | |
parent | 1133c399ff7a5d33c5351f776cc24d3b48592eba (diff) |
Revert "loplugin:constfields in unotools..uui"
This reverts commit d8ac55e3e53564aca4b0bade5a5b5cb01b4519b1.
Change-Id: Ib7cf67d5d0b7780dfde9453cdddb8f11ca5d3a6a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90542
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/unotools/configitem.hxx | 2 | ||||
-rw-r--r-- | include/unotools/intlwrapper.hxx | 2 | ||||
-rw-r--r-- | include/unotools/streamhelper.hxx | 2 | ||||
-rw-r--r-- | include/unotools/tempfile.hxx | 2 | ||||
-rw-r--r-- | include/unotools/transliterationwrapper.hxx | 2 | ||||
-rw-r--r-- | include/unotools/viewoptions.hxx | 4 |
6 files changed, 7 insertions, 7 deletions
diff --git a/include/unotools/configitem.hxx b/include/unotools/configitem.hxx index edeaf03af55c..16153e20715f 100644 --- a/include/unotools/configitem.hxx +++ b/include/unotools/configitem.hxx @@ -74,7 +74,7 @@ namespace utl m_xHierarchyAccess; css::uno::Reference< css::util::XChangesListener > xChangeLstnr; - ConfigItemMode const m_nMode; + ConfigItemMode m_nMode; bool m_bIsModified; bool m_bEnableInternalNotification; sal_Int16 m_nInValueChange; diff --git a/include/unotools/intlwrapper.hxx b/include/unotools/intlwrapper.hxx index 47ded1a273a9..8a893eb78aad 100644 --- a/include/unotools/intlwrapper.hxx +++ b/include/unotools/intlwrapper.hxx @@ -50,7 +50,7 @@ class LocaleDataWrapper; class UNOTOOLS_DLLPUBLIC IntlWrapper { private: - LanguageTag const maLanguageTag; + LanguageTag maLanguageTag; css::uno::Reference< css::uno::XComponentContext > m_xContext; std::unique_ptr<LocaleDataWrapper> pLocaleData; diff --git a/include/unotools/streamhelper.hxx b/include/unotools/streamhelper.hxx index 5b2b7f762157..05c5a5b45e84 100644 --- a/include/unotools/streamhelper.hxx +++ b/include/unotools/streamhelper.hxx @@ -38,7 +38,7 @@ class UNOTOOLS_DLLPUBLIC OInputStreamHelper final : public cppu::WeakImplHelper< ::osl::Mutex m_aMutex; SvLockBytesRef m_xLockBytes; sal_uInt64 m_nActPos; - sal_Int32 const m_nAvailable; // this is typically the chunk(buffer) size + sal_Int32 m_nAvailable; // this is typically the chunk(buffer) size public: OInputStreamHelper(const SvLockBytesRef& _xLockBytes, diff --git a/include/unotools/tempfile.hxx b/include/unotools/tempfile.hxx index b20a4f2fdf40..60ae7710c59c 100644 --- a/include/unotools/tempfile.hxx +++ b/include/unotools/tempfile.hxx @@ -48,7 +48,7 @@ class UNOTOOLS_DLLPUBLIC TempFile OUString aName; std::unique_ptr<SvStream> pStream; - bool const bIsDirectory; + bool bIsDirectory; bool bKillingFileEnabled; public: diff --git a/include/unotools/transliterationwrapper.hxx b/include/unotools/transliterationwrapper.hxx index 882975bac2a5..a87cf29ca32c 100644 --- a/include/unotools/transliterationwrapper.hxx +++ b/include/unotools/transliterationwrapper.hxx @@ -43,7 +43,7 @@ class UNOTOOLS_DLLPUBLIC TransliterationWrapper { css::uno::Reference< css::i18n::XExtendedTransliteration > xTrans; LanguageTag aLanguageTag; - TransliterationFlags const nType; + TransliterationFlags nType; mutable bool bFirstCall; TransliterationWrapper( const TransliterationWrapper& ) = delete; diff --git a/include/unotools/viewoptions.hxx b/include/unotools/viewoptions.hxx index 461e5ead6e26..8eb088077b54 100644 --- a/include/unotools/viewoptions.hxx +++ b/include/unotools/viewoptions.hxx @@ -234,8 +234,8 @@ class SAL_WARN_UNUSED UNOTOOLS_DLLPUBLIC SvtViewOptions final : public utl::deta /// specify which list of views in configuration is used! This can't be a static value!!! /// ... because we need this value to work with right static data container. - EViewType const m_eViewType; - OUString const m_sViewName; + EViewType m_eViewType; + OUString m_sViewName; /*Attention |