summaryrefslogtreecommitdiff
path: root/package/source/xstor
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-07 10:12:55 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-07 11:01:11 +0000
commite546ed01e6bf6dbd8a30cecead4b0b75e2afe92a (patch)
treea0802d5bc6f57d75cad302069ff88d4390636660 /package/source/xstor
parent3ddaeaab37d585971e376de6ad7b0f06f55f2e1a (diff)
loplugin:unusedmethods package
Change-Id: I19d6bbb9288d72b99d1023b4983b1c3fff7570e8 Reviewed-on: https://gerrit.libreoffice.org/16811 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'package/source/xstor')
-rw-r--r--package/source/xstor/owriteablestream.hxx6
-rw-r--r--package/source/xstor/xstorage.hxx7
2 files changed, 0 insertions, 13 deletions
diff --git a/package/source/xstor/owriteablestream.hxx b/package/source/xstor/owriteablestream.hxx
index 9da76c741388..2438e260bc61 100644
--- a/package/source/xstor/owriteablestream.hxx
+++ b/package/source/xstor/owriteablestream.hxx
@@ -191,12 +191,6 @@ public:
void Commit();
void Revert();
- void Free( bool bMust ); // allows to try to disconnect from the temporary stream
- // in case bMust is set to sal_True the method
- // will throw exception in case the file is still busy
-
- void SetModified(); // can be done only by parent storage after renaming
-
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > GetStreamProperties();
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::beans::StringPair > > GetAllRelationshipsIfAny();
diff --git a/package/source/xstor/xstorage.hxx b/package/source/xstor/xstorage.hxx
index 6e7879f1daa8..c1371a367c86 100644
--- a/package/source/xstor/xstorage.hxx
+++ b/package/source/xstor/xstorage.hxx
@@ -213,8 +213,6 @@ struct OStorage_Impl
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::beans::StringPair > > GetAllRelationshipsIfAny();
void CopyLastCommitTo( const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& xNewStor );
- void CopyLastCommitTo( const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& xNewStor,
- const OUString& aPass );
void InsertIntoPackageFolder(
const OUString& aName,
@@ -232,8 +230,6 @@ struct OStorage_Impl
const OUString& aName,
bool bDirect );
- void SetModified( bool bModified );
-
SotElement_Impl* FindElement( const OUString& rName );
SotElement_Impl* InsertStream( const OUString& aName, bool bEncr );
@@ -250,7 +246,6 @@ struct OStorage_Impl
void RemoveElement( SotElement_Impl* pElement );
static void ClearElement( SotElement_Impl* pElement );
- void DisposeChildren();
void CloneStreamElement(
const OUString& aStreamName,
@@ -298,8 +293,6 @@ class OStorage : public ::com::sun::star::lang::XTypeProvider
protected:
- void Commit_Impl();
-
SotElement_Impl* OpenStreamElement_Impl( const OUString& aStreamName, sal_Int32 nOpenMode, bool bEncr );
void BroadcastModifiedIfNecessary();