summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/pdfimport/filterdet.cxx4
-rw-r--r--sdext/source/pdfimport/tree/imagecontainer.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/sdext/source/pdfimport/filterdet.cxx b/sdext/source/pdfimport/filterdet.cxx
index 64c58ed58e74..d6afc41dbde0 100644
--- a/sdext/source/pdfimport/filterdet.cxx
+++ b/sdext/source/pdfimport/filterdet.cxx
@@ -78,7 +78,7 @@ namespace {
switch(nIndex)
{
default:
- OSL_ENSURE(false,"Unexpected case!");
+ OSL_FAIL("Unexpected case!");
break;
case DRAW_INDEX:
bDrawState=sal_True;
@@ -520,7 +520,7 @@ rtl::OUString SAL_CALL PDFDetector::detect( uno::Sequence< beans::PropertyValue
break;
default:
- OSL_ENSURE(false,"Unexpected case");
+ OSL_FAIL("Unexpected case");
}
aOutTypeName = rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("pdf_Portable_Document_Format") );
diff --git a/sdext/source/pdfimport/tree/imagecontainer.cxx b/sdext/source/pdfimport/tree/imagecontainer.cxx
index 7acc47e7e6c3..9be7bb5de0dd 100644
--- a/sdext/source/pdfimport/tree/imagecontainer.cxx
+++ b/sdext/source/pdfimport/tree/imagecontainer.cxx
@@ -146,7 +146,7 @@ void ImageContainer::writeBase64EncodedStream( ImageId nId, EmitContext& rContex
uno::Sequence<sal_Int8> aData;
if( !(pValue->Value >>= aData) )
- OSL_ENSURE(false,"Wrong data type");
+ OSL_FAIL("Wrong data type");
rContext.rEmitter.write( encodeBase64( aData.getConstArray(), aData.getLength() ));
}