summaryrefslogtreecommitdiff
path: root/oox/source
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source')
-rw-r--r--oox/source/core/filterbase.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/oox/source/core/filterbase.cxx b/oox/source/core/filterbase.cxx
index f30362f3e493..ff498af719d2 100644
--- a/oox/source/core/filterbase.cxx
+++ b/oox/source/core/filterbase.cxx
@@ -158,7 +158,6 @@ struct FilterBaseImpl
void setDocumentModel( const Reference< XComponent >& rxComponent ) throw( IllegalArgumentException );
void initializeFilter();
- void finalizeFilter();
};
// ----------------------------------------------------------------------------
@@ -196,24 +195,6 @@ void FilterBaseImpl::initializeFilter()
}
}
-void FilterBaseImpl::finalizeFilter()
-{
- try
- {
- // writing back the FilterData to the MediaDescriptor
- maMediaDesc["FilterData"] = makeAny(maFilterData.getAsConstPropertyValueList());
- // write the descriptor back to the document model (adds the passwords)
- mxModel->attachResource( maFileUrl, maMediaDesc.getAsConstPropertyValueList() );
- // unlock the model controllers
- mxModel->unlockControllers();
- }
- catch( Exception& )
- {
- }
-}
-
-// ============================================================================
-
FilterBase::FilterBase( const Reference< XComponentContext >& rxContext ) throw( RuntimeException ) :
mxImpl( new FilterBaseImpl( rxContext ) )
{