diff options
author | Philipp Lohmann <pl@openoffice.org> | 2001-05-14 08:43:44 +0000 |
---|---|---|
committer | Philipp Lohmann <pl@openoffice.org> | 2001-05-14 08:43:44 +0000 |
commit | c9ad45da3e262aa8fc1eee457ce28d2f9f3edb5e (patch) | |
tree | f2b3d05480c658d9ba20e343e11fe6a4025c944c /extensions/source/resource | |
parent | b82cc20db0f51f496f366cb4e759092a6af8f849 (diff) |
rtl string api changes
Diffstat (limited to 'extensions/source/resource')
-rw-r--r-- | extensions/source/resource/resource.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/resource/resource.cxx b/extensions/source/resource/resource.cxx index 0ee8da292ac3..4c989f163f6d 100644 --- a/extensions/source/resource/resource.cxx +++ b/extensions/source/resource/resource.cxx @@ -2,9 +2,9 @@ * * $RCSfile: resource.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jl $ $Date: 2001-03-23 11:55:07 $ + * last change: $Author: pl $ $Date: 2001-05-14 09:38:52 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -295,7 +295,7 @@ Reference< XInvocation > ResourceService::getDefaultInvocation() const OUString SAL_CALL ResourceService::getExactName( const OUString & ApproximateName ) { OUString aName( ApproximateName ); - aName = aName.toLowerCase(); + aName = aName.toAsciiLowerCase(); if( aName == OUString::createFromAscii("filename") ) return OUString::createFromAscii("FileName"); else if( aName == OUString::createFromAscii("getstring" )) |