diff options
author | Andreas Bille <abi@openoffice.org> | 2001-05-22 13:57:13 +0000 |
---|---|---|
committer | Andreas Bille <abi@openoffice.org> | 2001-05-22 13:57:13 +0000 |
commit | b0d402e64f6ceb8c3c0eac358f2c6ab6d142b812 (patch) | |
tree | 8e6d3c2bac0691450f841130186b4de090f8ab2e /xmlhelp/source/cxxhelp/provider/provider.cxx | |
parent | ee77975f1bf673825865f6eade9fa56c3b69f953 (diff) |
pretty printing
Diffstat (limited to 'xmlhelp/source/cxxhelp/provider/provider.cxx')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/provider.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/provider.cxx b/xmlhelp/source/cxxhelp/provider/provider.cxx index 85de7b712e8a..2a7858e42bbe 100644 --- a/xmlhelp/source/cxxhelp/provider/provider.cxx +++ b/xmlhelp/source/cxxhelp/provider/provider.cxx @@ -2,9 +2,9 @@ * * $RCSfile: provider.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: abi $ $Date: 2001-05-17 15:46:30 $ + * last change: $Author: abi $ $Date: 2001-05-22 14:57:11 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -180,7 +180,7 @@ ONE_INSTANCE_SERVICE_FACTORY_IMPL( ContentProvider ); Reference< XContent > SAL_CALL ContentProvider::queryContent( const Reference< XContentIdentifier >& xCanonicId ) throw( IllegalIdentifierException, RuntimeException ) { - if ( ! xCanonicId->getContentProviderScheme().equalsIgnoreCase( m_aScheme ) ) + if ( ! xCanonicId->getContentProviderScheme().equalsIgnoreAsciiCase( m_aScheme ) ) { // Wrong URL-scheme throw IllegalIdentifierException(); } |