summaryrefslogtreecommitdiff
path: root/stoc/test/testconv.cxx
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2001-03-12 14:38:06 +0000
committerJoachim Lingner <jl@openoffice.org>2001-03-12 14:38:06 +0000
commit4038b72427b8fac68219b39e90fc43cbd20dcc41 (patch)
tree8df711efb615eea6cb418bf6e16e6e37e92b6bea /stoc/test/testconv.cxx
parent8c43ce3310b262edac3635023107167d56798964 (diff)
OSL_ENSHURE replaced by OSL_ENSURE
Diffstat (limited to 'stoc/test/testconv.cxx')
-rw-r--r--stoc/test/testconv.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/stoc/test/testconv.cxx b/stoc/test/testconv.cxx
index 32fedbcdc35f..fa3e1d7b5c22 100644
--- a/stoc/test/testconv.cxx
+++ b/stoc/test/testconv.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: testconv.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: pluby $ $Date: 2001-02-12 03:30:52 $
+ * last change: $Author: jl $ $Date: 2001-03-12 15:27:20 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -713,7 +713,7 @@ int __cdecl main( int argc, char * argv[] )
{
Reference< XImplementationRegistration > xImplReg(
xMgr->createInstance( OUString::createFromAscii("com.sun.star.registry.ImplementationRegistration") ), UNO_QUERY );
- OSL_ENSHURE( xImplReg.is(), "### no impl reg!" );
+ OSL_ENSURE( xImplReg.is(), "### no impl reg!" );
OUString aLibName( OUString::createFromAscii( REG_PREFIX ) );
aLibName += OUString::createFromAscii("tcv");
@@ -728,7 +728,7 @@ int __cdecl main( int argc, char * argv[] )
}
catch (Exception & rExc)
{
- OSL_ENSHURE( sal_False, "### exception occured!" );
+ OSL_ENSURE( sal_False, "### exception occured!" );
OString aMsg( OUStringToOString( rExc.Message, RTL_TEXTENCODING_ASCII_US ) );
OSL_TRACE( "### exception occured: " );
OSL_TRACE( aMsg.getStr() );