diff options
author | Sander Vesik <svesik@openoffice.org> | 2004-04-21 13:08:04 +0000 |
---|---|---|
committer | Sander Vesik <svesik@openoffice.org> | 2004-04-21 13:08:04 +0000 |
commit | afd9a09c334e64f727875acf7e506a293585a26d (patch) | |
tree | 2aff4796c618697de57a9125dc7a06de5e868f01 /cppuhelper | |
parent | f690e86642502b46eb2b58656e7846830fe379ec (diff) |
INTEGRATION: CWS ooo20040329 (1.4.98); FILE MERGED
2004/03/17 11:49:16 waratah 1.4.98.1: #i1858# alter the order of some definitions to fix some -Wall warnings
correct spelling mistake in code
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/source/stdidlclass.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cppuhelper/source/stdidlclass.cxx b/cppuhelper/source/stdidlclass.cxx index f83fe2d42ec7..f5baf68aa3f1 100644 --- a/cppuhelper/source/stdidlclass.cxx +++ b/cppuhelper/source/stdidlclass.cxx @@ -2,9 +2,9 @@ * * $RCSfile: stdidlclass.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: dbo $ $Date: 2002-06-14 13:20:20 $ + * last change: $Author: svesik $ $Date: 2004-04-21 14:08:04 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -170,7 +170,7 @@ Reference< XIdlReflection > const & OStdIdlClass::get_corefl() Reference < XIdlReflection > x; xContext->getValueByName( OUString( RTL_CONSTASCII_USTRINGPARAM("/singletons/com.sun.star.reflection.theCoreReflection") ) ) >>= x; - OSL_ENSURE( x.is(), "### CoreReflection singleton not accessable!?" ); + OSL_ENSURE( x.is(), "### CoreReflection singleton not accessible!?" ); if (x.is()) { @@ -186,7 +186,7 @@ Reference< XIdlReflection > const & OStdIdlClass::get_corefl() if (! m_xCorefl.is()) { throw DeploymentException( - OUString( RTL_CONSTASCII_USTRINGPARAM("/singletons/com.sun.star.reflection.theCoreReflection singleton not accessable") ), + OUString( RTL_CONSTASCII_USTRINGPARAM("/singletons/com.sun.star.reflection.theCoreReflection singleton not accessible") ), Reference< XInterface >() ); } } @@ -199,9 +199,9 @@ OStdIdlClass::OStdIdlClass( const Reference < XIdlClass > & rSuperClass, const Sequence < OUString > &seq ) SAL_THROW( () ) : - m_rSMgr( rSMgr ) , m_sImplementationName( sImplementationName ) , - m_seqSupportedInterface( seq ) + m_seqSupportedInterface( seq ), + m_rSMgr( rSMgr ) { if( rSuperClass.is() ) m_seqSuperClasses = Sequence< Reference < XIdlClass > >( &rSuperClass, 1 ); |