summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/registry/component/dp_component.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/registry/component/dp_component.cxx')
-rw-r--r--desktop/source/deployment/registry/component/dp_component.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/desktop/source/deployment/registry/component/dp_component.cxx b/desktop/source/deployment/registry/component/dp_component.cxx
index b8fe7478e10a..2b04a5c5c94e 100644
--- a/desktop/source/deployment/registry/component/dp_component.cxx
+++ b/desktop/source/deployment/registry/component/dp_component.cxx
@@ -1051,7 +1051,7 @@ Reference<XComponentContext> raise_uno_process(
Reference<XComponentContext> const & xContext,
::rtl::Reference<AbortChannel> const & abortChannel )
{
- assert( xContext.is() );
+ OSL_ASSERT( xContext.is() );
OUString url( util::theMacroExpander::get(xContext)->expandMacros( "$URE_BIN_DIR/uno" ) );
@@ -1095,7 +1095,7 @@ Reference<XComponentContext> raise_uno_process(
// try to terminate process:
if ( osl_terminateProcess( hProcess ) != osl_Process_E_None )
{
- assert( false );
+ OSL_ASSERT( false );
}
throw;
}
@@ -1113,7 +1113,7 @@ void extractComponentData(
componentLoader,
OUString const & componentUrl)
{
- assert(
+ OSL_ASSERT(
context.is() && registry.is() && data != nullptr && componentLoader.is());
OUString registryName(registry->getKeyName());
sal_Int32 prefix = registryName.getLength();
@@ -1588,7 +1588,7 @@ BackendImpl::OtherPlatformPackageImpl::impl_createInstance(OUString const& rServ
const
{
Reference<XComponentContext> const xContext(getMyBackend()->getComponentContext());
- assert(xContext.is());
+ OSL_ASSERT(xContext.is());
Reference<XInterface> xService;
if (xContext.is())
xService.set(xContext->getServiceManager()->createInstanceWithContext(rService, xContext));