diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-13 21:12:38 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-03-15 16:28:14 +0100 |
commit | 12a8fa0d656f3f8bad7c9f85e4f760b5201d5f75 (patch) | |
tree | 51bf0e790789a218b8c788ab22258180cca77e40 /ucbhelper | |
parent | c42cf09f17e683d7487b8b298bd2f5ff3587bf00 (diff) |
Revert "loplugin:constfields in ucbhelper"
This reverts commit 64035391ebe8810520a214a3ae0aeb4c1b039819.
Change-Id: Icfde3e984f9ebf93a423d101aee385182f65dea5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90518
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/client/proxydecider.cxx | 2 | ||||
-rw-r--r-- | ucbhelper/source/provider/resultset.cxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ucbhelper/source/client/proxydecider.cxx b/ucbhelper/source/client/proxydecider.cxx index 062dd64b2887..a8ffd9599f34 100644 --- a/ucbhelper/source/client/proxydecider.cxx +++ b/ucbhelper/source/client/proxydecider.cxx @@ -68,7 +68,7 @@ namespace { class WildCard { private: - OString const m_aWildString; + OString m_aWildString; public: explicit WildCard( const OUString& rWildCard ) diff --git a/ucbhelper/source/provider/resultset.cxx b/ucbhelper/source/provider/resultset.cxx index 468bf2392a80..6cb1536675b8 100644 --- a/ucbhelper/source/provider/resultset.cxx +++ b/ucbhelper/source/provider/resultset.cxx @@ -43,8 +43,8 @@ namespace { struct PropertyInfo { const char* pName; - sal_Int32 const nHandle; - sal_Int16 const nAttributes; + sal_Int32 nHandle; + sal_Int16 nAttributes; const uno::Type& (*pGetCppuType)(); }; @@ -152,7 +152,7 @@ struct ResultSet_Impl uno::Reference< css::ucb::XCommandEnvironment > m_xEnv; uno::Reference< beans::XPropertySetInfo > m_xPropSetInfo; uno::Reference< sdbc::XResultSetMetaData > m_xMetaData; - uno::Sequence< beans::Property > const m_aProperties; + uno::Sequence< beans::Property > m_aProperties; rtl::Reference< ResultSetDataSupplier > m_xDataSupplier; osl::Mutex m_aMutex; std::unique_ptr<cppu::OInterfaceContainerHelper> m_pDisposeEventListeners; |