summaryrefslogtreecommitdiff
path: root/oox/source/ole/olestorage.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-12 11:43:16 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-12 14:12:37 +0100
commit7d669e4cdc6ddcb680ffb4f05b18a8925a76a6b0 (patch)
tree60c7573fef5c6868ef98cdea125d6e0ddc76dd57 /oox/source/ole/olestorage.cxx
parentd4ebec5c7950c2558c8efe873288e078f5d8ad31 (diff)
Move OSL_ENSURE(false,...) to OSL_FAIL(...)
Diffstat (limited to 'oox/source/ole/olestorage.cxx')
-rw-r--r--oox/source/ole/olestorage.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/ole/olestorage.cxx b/oox/source/ole/olestorage.cxx
index ca028f6ab3ba..cff723194908 100644
--- a/oox/source/ole/olestorage.cxx
+++ b/oox/source/ole/olestorage.cxx
@@ -264,7 +264,7 @@ void OleStorage::initStorage( const Reference< XInputStream >& rxInStream )
}
catch( Exception& )
{
- OSL_ENSURE( false, "OleStorage::initStorage - cannot create temporary copy of input stream" );
+ OSL_FAIL( "OleStorage::initStorage - cannot create temporary copy of input stream" );
}
// create base storage object
@@ -317,7 +317,7 @@ bool OleStorage::implIsStorage() const
Reference< XStorage > OleStorage::implGetXStorage() const
{
- OSL_ENSURE( false, "OleStorage::getXStorage - not implemented" );
+ OSL_FAIL( "OleStorage::getXStorage - not implemented" );
return Reference< XStorage >();
}