Kaydet (Commit) 0483e756 authored tarafından Chris Sherlock's avatar Chris Sherlock

tdf#43157: convert writerperfect module away from OSL_ASSERT to assert

Change-Id: I5db174ea899229151327a471fb0e18d643830542
üst bbbb81b4
......@@ -73,7 +73,7 @@ public:
aDescriptor[utl::MediaDescriptor::PROP_INPUTSTREAM()] >>= xInputStream;
if (!xInputStream.is())
{
OSL_ASSERT(false);
assert(false);
return false;
}
......
......@@ -277,7 +277,7 @@ sal_Bool MSWorksCalcImportFilter::filter(const css::uno::Sequence< css::beans::P
if (!getXContext().is() || !xInputStream.is())
{
OSL_ASSERT(false);
assert(false);
return false;
}
......
......@@ -97,7 +97,7 @@ bool SAL_CALL WordPerfectImportFilter::importImpl(const Sequence< css::beans::Pr
}
if (!xInputStream.is())
{
OSL_ASSERT(false);
assert(false);
return false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment