summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-12 11:46:53 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-13 16:50:42 +0100
commit1c881a9eb5e756e1e66ac745a3e9baedeaf79b0f (patch)
tree19a79f67c386e8fcbefcd514b025b90676552019
parent35debc35959f2d14e87384e208a550e1c64c452a (diff)
Move OSL_ENSURE(false,...) to OSL_FAIL(...)
-rw-r--r--sfx2/source/view/viewfrm.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx
index 11de6cbe6031..b493286ccd98 100644
--- a/sfx2/source/view/viewfrm.cxx
+++ b/sfx2/source/view/viewfrm.cxx
@@ -2182,7 +2182,7 @@ void SfxViewFrame::SaveCurrentViewData_Impl( const USHORT i_nNewViewId )
{
// can't say anything about the view, the respective application did not yet migrate its code to
// named view factories => bail out
- OSL_ENSURE( false, "SfxViewFrame::SaveCurrentViewData_Impl: views without API names? Shouldn't happen anymore?" );
+ OSL_FAIL( "SfxViewFrame::SaveCurrentViewData_Impl: views without API names? Shouldn't happen anymore?" );
return;
}
OSL_ENSURE( !sNewViewName.Equals( sCurrentViewName ), "SfxViewFrame::SaveCurrentViewData_Impl: suspicious: new and old view name are identical!" );
@@ -2397,7 +2397,7 @@ void SfxViewFrame::ExecView_Impl
// Hack. at the moment a virtual Function
if ( !GetViewShell()->NewWindowAllowed() )
{
- OSL_ENSURE( false, "You should have disabled the 'Window/New Window' slot!" );
+ OSL_FAIL( "You should have disabled the 'Window/New Window' slot!" );
return;
}
@@ -3363,7 +3363,7 @@ void SfxViewFrame::ChildWindowState( SfxItemSet& rState )
{
if ( !KnowsChildWindow( nSID ) )
{
- OSL_ENSURE( false, "SID_TASKPANE state requested, but no task pane child window exists for this ID!" );
+ OSL_FAIL( "SID_TASKPANE state requested, but no task pane child window exists for this ID!" );
rState.DisableItem( nSID );
}
else if ( !moduleHasToolPanels( *pImp ) )