summaryrefslogtreecommitdiff
path: root/oox/source/core/binaryfilterbase.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/core/binaryfilterbase.cxx')
-rw-r--r--oox/source/core/binaryfilterbase.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/oox/source/core/binaryfilterbase.cxx b/oox/source/core/binaryfilterbase.cxx
index 1dd2e0e9086c..f308f02ac9dc 100644
--- a/oox/source/core/binaryfilterbase.cxx
+++ b/oox/source/core/binaryfilterbase.cxx
@@ -26,7 +26,7 @@
************************************************************************/
#include "oox/core/binaryfilterbase.hxx"
-#include "oox/helper/olestorage.hxx"
+#include "oox/ole/olestorage.hxx"
using ::rtl::OUString;
using ::com::sun::star::uno::Reference;
@@ -52,12 +52,12 @@ BinaryFilterBase::~BinaryFilterBase()
StorageRef BinaryFilterBase::implCreateStorage( const Reference< XInputStream >& rxInStream ) const
{
- return StorageRef( new OleStorage( getGlobalFactory(), rxInStream, true ) );
+ return StorageRef( new ::oox::ole::OleStorage( getGlobalFactory(), rxInStream, true ) );
}
StorageRef BinaryFilterBase::implCreateStorage( const Reference< XStream >& rxOutStream ) const
{
- return StorageRef( new OleStorage( getGlobalFactory(), rxOutStream, true ) );
+ return StorageRef( new ::oox::ole::OleStorage( getGlobalFactory(), rxOutStream, true ) );
}
// ============================================================================