summaryrefslogtreecommitdiff
path: root/svtools/source/dialogs
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-19 14:11:09 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-19 14:11:09 +0100
commit3d874bdf409ca4a099853b30aeb9932e45c56f60 (patch)
tree3b88c39fa7cf3aa598a286534afc7de6f4ec98ab /svtools/source/dialogs
parent4edacef4f14f1992f8e0cbded5a86730c8353b4d (diff)
Move OSL_ENSURE(sal_False,...) to OSL_FAIL(...)
Diffstat (limited to 'svtools/source/dialogs')
-rw-r--r--svtools/source/dialogs/insdlg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/dialogs/insdlg.cxx b/svtools/source/dialogs/insdlg.cxx
index 9d060f4e8a01..ee950a4e7cc2 100644
--- a/svtools/source/dialogs/insdlg.cxx
+++ b/svtools/source/dialogs/insdlg.cxx
@@ -164,13 +164,13 @@ void SvObjectServerList::FillInsertObjects()
::utl::ConfigManager::GetDirectConfigProperty( ::utl::ConfigManager::PRODUCTNAME );
if ( !( aProperty >>= aProductName ) )
{
- OSL_ENSURE( sal_False, "Coudn't get PRODUCTNAME variable!\n" );
+ OSL_FAIL( "Coudn't get PRODUCTNAME variable!\n" );
aProductName = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "StarOffice" ) );
}
aProperty = ::utl::ConfigManager::GetDirectConfigProperty( ::utl::ConfigManager::PRODUCTVERSION );
if ( !( aProperty >>= aProductVersion ) )
{
- OSL_ENSURE( sal_False, "Coudn't get PRODUCTVERSION variable!\n" );
+ OSL_FAIL( "Coudn't get PRODUCTVERSION variable!\n" );
}
for( nInd = 0; nInd < seqNames.getLength(); nInd++ )