Kaydet (Commit) 52370d78 authored tarafından Thomas Arnhold's avatar Thomas Arnhold

Move bogus OSL_ASSERT(msg) to OSL_FAIL(msg)

üst 6e03518f
......@@ -364,7 +364,7 @@ short SvInsertOleDlg::Execute()
}
else
{
OSL_ASSERT( "Can not get InteractionHandler!\n" );
OSL_FAIL( "Can not get InteractionHandler!\n" );
aMedium.realloc( 1 );
}
......
......@@ -81,7 +81,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_writeInfo(
}
catch (InvalidRegistryException& )
{
OSL_ASSERT("abp::component_writeInfo: could not create a registry key (InvalidRegistryException) !");
OSL_FAIL("abp::component_writeInfo: could not create a registry key (InvalidRegistryException) !");
}
return sal_False;
......
......@@ -85,7 +85,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_writeInfo(
}
catch (InvalidRegistryException& )
{
OSL_ASSERT("dbp::component_writeInfo: could not create a registry key (InvalidRegistryException) !");
OSL_FAIL("dbp::component_writeInfo: could not create a registry key (InvalidRegistryException) !");
}
return sal_False;
......
......@@ -203,7 +203,7 @@ namespace COMPMOD_NAMESPACE
{
if (!s_pImplementationNames)
{
OSL_ASSERT("OModule::revokeComponent : have no class infos ! Are you sure called this method at the right time ?");
OSL_FAIL("OModule::revokeComponent : have no class infos ! Are you sure called this method at the right time ?");
return;
}
OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers,
......@@ -245,7 +245,7 @@ namespace COMPMOD_NAMESPACE
if (!s_pImplementationNames)
{
OSL_ASSERT("OModule::writeComponentInfos : have no class infos ! Are you sure called this method at the right time ?");
OSL_FAIL("OModule::writeComponentInfos : have no class infos ! Are you sure called this method at the right time ?");
return sal_True;
}
OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers,
......@@ -276,7 +276,7 @@ namespace COMPMOD_NAMESPACE
}
catch(Exception&)
{
OSL_ASSERT("OModule::writeComponentInfos : something went wrong while creating the keys !");
OSL_FAIL("OModule::writeComponentInfos : something went wrong while creating the keys !");
return sal_False;
}
}
......@@ -294,7 +294,7 @@ namespace COMPMOD_NAMESPACE
if (!s_pImplementationNames)
{
OSL_ASSERT("OModule::getComponentFactory : have no class infos ! Are you sure called this method at the right time ?");
OSL_FAIL("OModule::getComponentFactory : have no class infos ! Are you sure called this method at the right time ?");
return NULL;
}
OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers,
......
......@@ -81,7 +81,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_writeInfo(
}
catch (InvalidRegistryException& )
{
OSL_ASSERT("preload::component_writeInfo: could not create a registry key (InvalidRegistryException) !");
OSL_FAIL("preload::component_writeInfo: could not create a registry key (InvalidRegistryException) !");
}
return sal_False;
......
......@@ -117,7 +117,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_writeInfo(
}
catch (InvalidRegistryException& )
{
OSL_ASSERT("pcr::component_writeInfo: could not create a registry key (InvalidRegistryException) !");
OSL_FAIL("pcr::component_writeInfo: could not create a registry key (InvalidRegistryException) !");
}
return sal_False;
......
......@@ -74,7 +74,7 @@ namespace FORMS_MODULE_NAMESPACE
{
if (!s_pImplementationNames)
{
OSL_ASSERT("OFormsModule::revokeComponent : have no class infos ! Are you sure called this method at the right time ?");
OSL_FAIL("OFormsModule::revokeComponent : have no class infos ! Are you sure called this method at the right time ?");
return;
}
OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers,
......@@ -116,7 +116,7 @@ namespace FORMS_MODULE_NAMESPACE
if (!s_pImplementationNames)
{
OSL_ASSERT("OFormsModule::writeComponentInfos : have no class infos ! Are you sure called this method at the right time ?");
OSL_FAIL("OFormsModule::writeComponentInfos : have no class infos ! Are you sure called this method at the right time ?");
return sal_True;
}
OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers,
......@@ -147,7 +147,7 @@ namespace FORMS_MODULE_NAMESPACE
}
catch(Exception&)
{
OSL_ASSERT("OFormsModule::writeComponentInfos : something went wrong while creating the keys !");
OSL_FAIL("OFormsModule::writeComponentInfos : something went wrong while creating the keys !");
return sal_False;
}
}
......@@ -165,7 +165,7 @@ namespace FORMS_MODULE_NAMESPACE
if (!s_pImplementationNames)
{
OSL_ASSERT("OFormsModule::getComponentFactory : have no class infos ! Are you sure called this method at the right time ?");
OSL_FAIL("OFormsModule::getComponentFactory : have no class infos ! Are you sure called this method at the right time ?");
return NULL;
}
OSL_ENSURE(s_pImplementationNames && s_pSupportedServices && s_pCreationFunctionPointers && s_pFactoryFunctionPointers,
......
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