summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-12 16:57:30 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-13 08:12:45 +0100
commitd59987b164bc32efe8f99ad49c139b4fc7ca3c2f (patch)
tree765652d6e940a5bdf43322ed54aa2f4c14116418 /ucb
parentb4641df5de7842d6a8fc2c4f839214bf01160c8c (diff)
loplugin:expandablemethods
Change-Id: I333d91ea5ce78c82e9bb107f934614efc7bfb8f7 Reviewed-on: https://gerrit.libreoffice.org/85078 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/cacher/cachedcontentresultset.cxx8
-rw-r--r--ucb/source/cacher/cachedcontentresultset.hxx1
2 files changed, 1 insertions, 8 deletions
diff --git a/ucb/source/cacher/cachedcontentresultset.cxx b/ucb/source/cacher/cachedcontentresultset.cxx
index 2d3e0cfc592e..833af4daf9f3 100644
--- a/ucb/source/cacher/cachedcontentresultset.cxx
+++ b/ucb/source/cacher/cachedcontentresultset.cxx
@@ -135,7 +135,7 @@ void CachedContentResultSet::CCRS_Cache
::clear()
{
m_pResult.reset();
- clearMappedReminder();
+ m_pMappedReminder.reset();
}
void CachedContentResultSet::CCRS_Cache
@@ -242,12 +242,6 @@ bool CachedContentResultSet::CCRS_Cache
return false;
}
-void CachedContentResultSet::CCRS_Cache
- ::clearMappedReminder()
-{
- m_pMappedReminder.reset();
-}
-
Sequence< sal_Bool >* CachedContentResultSet::CCRS_Cache
::getMappedReminder()
{
diff --git a/ucb/source/cacher/cachedcontentresultset.hxx b/ucb/source/cacher/cachedcontentresultset.hxx
index e2e6ec2c4d26..d21b74d5fb61 100644
--- a/ucb/source/cacher/cachedcontentresultset.hxx
+++ b/ucb/source/cacher/cachedcontentresultset.hxx
@@ -72,7 +72,6 @@ class CachedContentResultSet
void remindMapped( sal_Int32 nRow );
bool isRowMapped( sal_Int32 nRow );
- void clearMappedReminder();
css::uno::Sequence< sal_Bool >* getMappedReminder();
public: