summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-12-01 15:41:29 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-12-01 21:28:53 +0100
commit224fc966096e9fc52d8e41fbae211e3999edd945 (patch)
tree6ce0a574a0fc53ad7c647690505495026c64f035 /ucb
parent8e33793d72a0561ebcf19ca22df814bb347813b7 (diff)
loplugin:unusedfields make some fields private
Change-Id: Ia30e3b7f10ae11c7a74e6860ac0a6115caaa439f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143529 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/cacher/dynamicresultsetwrapper.hxx1
-rw-r--r--ucb/source/ucp/webdav-curl/DAVSession.hxx3
2 files changed, 1 insertions, 3 deletions
diff --git a/ucb/source/cacher/dynamicresultsetwrapper.hxx b/ucb/source/cacher/dynamicresultsetwrapper.hxx
index 8f9c0473f072..c6a363cff796 100644
--- a/ucb/source/cacher/dynamicresultsetwrapper.hxx
+++ b/ucb/source/cacher/dynamicresultsetwrapper.hxx
@@ -149,7 +149,6 @@ class DynamicResultSetWrapperListener
: public cppu::OWeakObject
, public css::ucb::XDynamicResultSetListener
{
-protected:
DynamicResultSetWrapper* m_pOwner;
osl::Mutex m_aMutex;
diff --git a/ucb/source/ucp/webdav-curl/DAVSession.hxx b/ucb/source/ucp/webdav-curl/DAVSession.hxx
index 6a4b65cdc41c..b73ceb561357 100644
--- a/ucb/source/ucp/webdav-curl/DAVSession.hxx
+++ b/ucb/source/ucp/webdav-curl/DAVSession.hxx
@@ -177,14 +177,13 @@ public:
virtual void abort() = 0;
protected:
- rtl::Reference< DAVSessionFactory > m_xFactory;
-
explicit DAVSession( rtl::Reference< DAVSessionFactory > xFactory )
: m_xFactory(std::move( xFactory )), m_nRefCount( 0 ) {}
virtual ~DAVSession() {}
private:
+ rtl::Reference< DAVSessionFactory > m_xFactory;
DAVSessionFactory::Map::iterator m_aContainerIt;
oslInterlockedCount m_nRefCount;