summaryrefslogtreecommitdiffstats
path: root/extensions/source/propctrlr/xsddatatypes.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-19 14:06:18 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-19 14:06:18 +0100
commit352f1a58e24c9c3ec45829111a77fa9fbd8065ab (patch)
treef4d3ec761af697a535fad86c5fec2e045c933d0e /extensions/source/propctrlr/xsddatatypes.cxx
parentNo WIN_ULONG needed any more (diff)
downloadcore-352f1a58e24c9c3ec45829111a77fa9fbd8065ab.tar.gz
core-352f1a58e24c9c3ec45829111a77fa9fbd8065ab.zip
Move OSL_ENSURE(sal_False,...) to OSL_FAIL(...)
Diffstat (limited to 'extensions/source/propctrlr/xsddatatypes.cxx')
-rw-r--r--extensions/source/propctrlr/xsddatatypes.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/extensions/source/propctrlr/xsddatatypes.cxx b/extensions/source/propctrlr/xsddatatypes.cxx
index 2b7b99692d87..c536c6f98f9a 100644
--- a/extensions/source/propctrlr/xsddatatypes.cxx
+++ b/extensions/source/propctrlr/xsddatatypes.cxx
@@ -60,7 +60,7 @@ namespace pcr
}
catch( const Exception& )
{
- OSL_ENSURE( sal_False, "XSDDataType: setSave: caught an exception!" );
+ OSL_FAIL( "XSDDataType: setSave: caught an exception!" );
}
}
@@ -75,7 +75,7 @@ namespace pcr
}
catch( const Exception& )
{
- OSL_ENSURE( sal_False, "XSDDataType: getSave: caught an exception!" );
+ OSL_FAIL( "XSDDataType: getSave: caught an exception!" );
}
return aReturn;
}
@@ -90,7 +90,7 @@ namespace pcr
}
catch( const Exception& )
{
- OSL_ENSURE( sal_False, "XSDDataType: getFacet: caught an exception!" );
+ OSL_FAIL( "XSDDataType: getFacet: caught an exception!" );
}
return aReturn;
}
@@ -141,7 +141,7 @@ namespace pcr
}
catch( const Exception& )
{
- OSL_ENSURE( sal_False, "XSDDataType::classify: caught an exception!" );
+ OSL_FAIL( "XSDDataType::classify: caught an exception!" );
}
return nTypeClass;
}
@@ -167,7 +167,7 @@ namespace pcr
}
catch( const Exception& )
{
- OSL_ENSURE( sal_False, "XSDDataType::setFacet: caught an exception - sure this is the right data type class for this property?" );
+ OSL_FAIL( "XSDDataType::setFacet: caught an exception - sure this is the right data type class for this property?" );
}
}
@@ -181,7 +181,7 @@ namespace pcr
}
catch( const Exception& )
{
- OSL_ENSURE( sal_False, "XSDDataType::hasFacet: caught an exception!" );
+ OSL_FAIL( "XSDDataType::hasFacet: caught an exception!" );
}
return bReturn;
}
@@ -195,7 +195,7 @@ namespace pcr
}
catch( const Exception& )
{
- OSL_ENSURE( sal_False, "XSDDataType::getFacet: caught an exception - sure this is the right data type class for this property?" );
+ OSL_FAIL( "XSDDataType::getFacet: caught an exception - sure this is the right data type class for this property?" );
}
return aReturn;
}
@@ -241,7 +241,7 @@ namespace pcr
}
catch( const Exception& )
{
- OSL_ENSURE( sal_False, "XSDDataType::copyFacetsFrom: caught an exception!" );
+ OSL_FAIL( "XSDDataType::copyFacetsFrom: caught an exception!" );
}
}