summaryrefslogtreecommitdiff
path: root/svx/source/form/formfeaturedispatcher.cxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-19 14:09:49 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-19 14:09:49 +0100
commit970be45287de1a046df1c546abb06ad5f6b9c084 (patch)
tree0a88a771e96b5e9d884e5b087adad9d320bdbe7b /svx/source/form/formfeaturedispatcher.cxx
parente35cffb37a792b78f8dbcd85b329fa88097b1ea5 (diff)
Move OSL_ENSURE(sal_False,...) to OSL_FAIL(...)
Diffstat (limited to 'svx/source/form/formfeaturedispatcher.cxx')
-rwxr-xr-xsvx/source/form/formfeaturedispatcher.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/form/formfeaturedispatcher.cxx b/svx/source/form/formfeaturedispatcher.cxx
index b7277ce6dd6c..c401f41c0588 100755
--- a/svx/source/form/formfeaturedispatcher.cxx
+++ b/svx/source/form/formfeaturedispatcher.cxx
@@ -125,7 +125,7 @@ namespace svx
}
catch( const Exception& )
{
- OSL_ENSURE( sal_False, "OSingleFeatureDispatcher::notifyStatus: caught an exception!" );
+ OSL_FAIL( "OSingleFeatureDispatcher::notifyStatus: caught an exception!" );
}
}
else
@@ -141,12 +141,12 @@ namespace svx
}
catch( const DisposedException& )
{
- OSL_ENSURE( sal_False, "OSingleFeatureDispatcher::notifyStatus: caught a DisposedException - removing the listener!" );
+ OSL_FAIL( "OSingleFeatureDispatcher::notifyStatus: caught a DisposedException - removing the listener!" );
aIter.remove( );
}
catch( const Exception& )
{
- OSL_ENSURE( sal_False, "OSingleFeatureDispatcher::notifyStatus: caught a generic exception while notifying a single listener!" );
+ OSL_FAIL( "OSingleFeatureDispatcher::notifyStatus: caught a generic exception while notifying a single listener!" );
}
}
}