summaryrefslogtreecommitdiff
path: root/store/source/storlckb.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-07 16:28:27 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-10-27 08:20:43 +0000
commit644487a1152c7586a7f20c7f372572a71d8494d5 (patch)
tree683cdbd755ec1660e75f930e5be4cd6867e3e734 /store/source/storlckb.cxx
parent1b4dff2c371d31c99f34324c3f6f31888bdc34d7 (diff)
loplugin:unusedmethods
Change-Id: I161cd52606c11b6008f5d8b1d8ee391692f91861 Reviewed-on: https://gerrit.libreoffice.org/19231 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'store/source/storlckb.cxx')
-rw-r--r--store/source/storlckb.cxx26
1 files changed, 0 insertions, 26 deletions
diff --git a/store/source/storlckb.cxx b/store/source/storlckb.cxx
index b6afa2d086c8..0e74ab931974 100644
--- a/store/source/storlckb.cxx
+++ b/store/source/storlckb.cxx
@@ -349,17 +349,6 @@ storeError OStoreLockBytes::writeAt (
}
/*
- * flush.
- */
-storeError OStoreLockBytes::flush()
-{
- if (!m_xManager.is())
- return store_E_InvalidAccess;
-
- return m_xManager->flush();
-}
-
-/*
* setSize.
*/
storeError OStoreLockBytes::setSize (sal_uInt32 nSize)
@@ -426,19 +415,4 @@ storeError OStoreLockBytes::setSize (sal_uInt32 nSize)
return m_xManager->saveObjectAt (aPage, aPage.location());
}
-/*
- * stat.
- */
-storeError OStoreLockBytes::stat (sal_uInt32 &rnSize)
-{
- rnSize = 0;
-
- if (!m_xManager.is())
- return store_E_InvalidAccess;
-
- OStoreDirectoryPageObject aPage (m_xNode.get());
- rnSize = aPage.dataLength();
- return store_E_None;
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */