diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-03-19 14:12:37 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-03-19 14:12:37 +0100 |
commit | 5a7f6793ac227c348198ae5958db5951214ec8d2 (patch) | |
tree | 25610ad164b4f66d705aecf6ea6c3ee72809c7e3 /stoc/source/tdmanager | |
parent | 1fa55878d9a8e0ce48501ad82fb537dc9c29855a (diff) |
Move OSL_ENSURE(sal_False,...) to OSL_FAIL(...)
Diffstat (limited to 'stoc/source/tdmanager')
-rw-r--r-- | stoc/source/tdmanager/tdmgr_tdenumeration.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/stoc/source/tdmanager/tdmgr_tdenumeration.cxx b/stoc/source/tdmanager/tdmgr_tdenumeration.cxx index a73625cf058c..aa48a275cb8e 100644 --- a/stoc/source/tdmanager/tdmgr_tdenumeration.cxx +++ b/stoc/source/tdmanager/tdmgr_tdenumeration.cxx @@ -164,14 +164,12 @@ TypeDescriptionEnumerationImpl::queryCurrentChildEnumeration() } catch ( reflection::NoSuchTypeNameException const & ) { - OSL_ENSURE( sal_False, - "TypeDescriptionEnumerationImpl::queryCurrentChildEnumeration " + OSL_FAIL( "TypeDescriptionEnumerationImpl::queryCurrentChildEnumeration " "- Caught NoSuchTypeNameException!" ); } catch ( reflection::InvalidTypeNameException const & ) { - OSL_ENSURE( sal_False, - "TypeDescriptionEnumerationImpl::queryCurrentChildEnumeration " + OSL_FAIL( "TypeDescriptionEnumerationImpl::queryCurrentChildEnumeration " "- Caught InvalidTypeNameException!" ); } |