summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-04-12 11:15:14 +0200
committerThomas Arnhold <thomas@arnhold.org>2012-04-12 11:39:53 +0200
commit032439617e4c82980d909dd09e10a47471d70aec (patch)
tree89229f6f8fd9958ea027fd4603f77542ef84982d /oox
parent3030a3a52f9bd89a055f65a2c5033be028da3cc2 (diff)
unusedcode.easy: remove FilterBase::openSubStorage
Diffstat (limited to 'oox')
-rw-r--r--oox/inc/oox/core/filterbase.hxx12
-rw-r--r--oox/source/core/filterbase.cxx5
2 files changed, 0 insertions, 17 deletions
diff --git a/oox/inc/oox/core/filterbase.hxx b/oox/inc/oox/core/filterbase.hxx
index 709b38694f6f..a4607e2e0a81 100644
--- a/oox/inc/oox/core/filterbase.hxx
+++ b/oox/inc/oox/core/filterbase.hxx
@@ -161,18 +161,6 @@ public:
/** Returns the base storage of the imported/exported file. */
StorageRef getStorage() const;
- /** Opens and returns the specified sub storage from the base storage.
-
- @param rStorageName
- The name of the embedded storage. The name may contain slashes to
- open storages from embedded substorages.
- @param bCreateMissing
- True = create missing sub storages (for export filters).
- */
- StorageRef openSubStorage(
- const ::rtl::OUString& rStorageName,
- bool bCreateMissing ) const;
-
/** Opens and returns the specified input stream from the base storage.
@param rStreamName
diff --git a/oox/source/core/filterbase.cxx b/oox/source/core/filterbase.cxx
index ce4fe3d953e6..97f298dd323d 100644
--- a/oox/source/core/filterbase.cxx
+++ b/oox/source/core/filterbase.cxx
@@ -363,11 +363,6 @@ StorageRef FilterBase::getStorage() const
return mxImpl->mxStorage;
}
-StorageRef FilterBase::openSubStorage( const OUString& rStorageName, bool bCreateMissing ) const
-{
- return mxImpl->mxStorage->openSubStorage( rStorageName, bCreateMissing );
-}
-
Reference< XInputStream > FilterBase::openInputStream( const OUString& rStreamName ) const
{
return mxImpl->mxStorage->openInputStream( rStreamName );