summaryrefslogtreecommitdiff
path: root/filter/source/xsltfilter/XSLTFilter.cxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2017-05-07 17:03:35 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2017-05-07 17:03:35 +1000
commit97eb00c75e173d4c8d0b483a7941ad3d2f23783e (patch)
tree7974a8b9423c56982646366b0859dfb2a1a88d50 /filter/source/xsltfilter/XSLTFilter.cxx
parentd0a99cc2ed76be220f7e868e332ba19f6e48a440 (diff)
revert OSL_ASSERT changes
Change-Id: I365d140446bd2a62cf8256acbfdd53fe72987380
Diffstat (limited to 'filter/source/xsltfilter/XSLTFilter.cxx')
-rw-r--r--filter/source/xsltfilter/XSLTFilter.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/filter/source/xsltfilter/XSLTFilter.cxx b/filter/source/xsltfilter/XSLTFilter.cxx
index d64ae15f21b9..47d9e380ae14 100644
--- a/filter/source/xsltfilter/XSLTFilter.cxx
+++ b/filter/source/xsltfilter/XSLTFilter.cxx
@@ -296,7 +296,7 @@ namespace XSLT
else if ( aName == "InteractionHandler" )
value >>= xInterActionHandler;
}
- assert(xInputStream.is());
+ OSL_ASSERT(xInputStream.is());
if (!xInputStream.is())
return false;
@@ -320,9 +320,9 @@ namespace XSLT
m_tcontrol = impl_createTransformer(msUserData[1], args);
- assert(xHandler.is());
- assert(xInputStream.is());
- assert(m_tcontrol.is());
+ OSL_ASSERT(xHandler.is());
+ OSL_ASSERT(xInputStream.is());
+ OSL_ASSERT(m_tcontrol.is());
if (xHandler.is() && xInputStream.is() && m_tcontrol.is())
{
try
@@ -473,8 +473,8 @@ namespace XSLT
m_tcontrol = impl_createTransformer(msUserData[1], args);
- assert(m_rOutputStream.is());
- assert(m_tcontrol.is());
+ OSL_ASSERT(m_rOutputStream.is());
+ OSL_ASSERT(m_tcontrol.is());
if (m_tcontrol.is() && m_rOutputStream.is())
{
// we want to be notfied when the processing is done...