summaryrefslogtreecommitdiff
path: root/ucbhelper
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-01 19:08:19 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-02 14:46:42 +0100
commitaa4b849ed4a79252fe24c801600a9c6ff2e8888e (patch)
treefca3abae122cdb91e0dbc297694270ef30984982 /ucbhelper
parentf66ecc7846ccda840b9ec0e6027bc2e5180e4a8b (diff)
Move DBG_ERROR to OSL_FAIL
Diffstat (limited to 'ucbhelper')
-rw-r--r--ucbhelper/workben/ucbexplorer/ucbexplorer.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/ucbhelper/workben/ucbexplorer/ucbexplorer.cxx b/ucbhelper/workben/ucbexplorer/ucbexplorer.cxx
index 1eb2f04527..f4ea99e2f2 100644
--- a/ucbhelper/workben/ucbexplorer/ucbexplorer.cxx
+++ b/ucbhelper/workben/ucbexplorer/ucbexplorer.cxx
@@ -1085,7 +1085,7 @@ void MyApp::Main()
cppu::defaultBootstrap_InitialComponentContext() );
if ( !xCtx.is() )
{
- DBG_ERROR( "Error creating initial component context!" );
+ OSL_FAIL( "Error creating initial component context!" );
return;
}
@@ -1094,13 +1094,13 @@ void MyApp::Main()
if ( !xFac.is() )
{
- DBG_ERROR( "No service manager!" );
+ OSL_FAIL( "No service manager!" );
return;
}
}
catch ( com::sun::star::uno::Exception const & )
{
- DBG_ERROR( "Exception during creation of initial component context!" );
+ OSL_FAIL( "Exception during creation of initial component context!" );
return;
}
@@ -1131,7 +1131,7 @@ void MyApp::Main()
if ( !bSuccess )
{
- DBG_ERROR( "Error creating UCB!" );
+ OSL_FAIL( "Error creating UCB!" );
return;
}