summaryrefslogtreecommitdiff
path: root/ucbhelper/source/provider
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-03-13 21:12:38 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-03-15 16:28:14 +0100
commit12a8fa0d656f3f8bad7c9f85e4f760b5201d5f75 (patch)
tree51bf0e790789a218b8c788ab22258180cca77e40 /ucbhelper/source/provider
parentc42cf09f17e683d7487b8b298bd2f5ff3587bf00 (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/source/provider')
-rw-r--r--ucbhelper/source/provider/resultset.cxx6
1 files changed, 3 insertions, 3 deletions
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;