diff options
author | Philipp Lohmann <pl@openoffice.org> | 2001-05-11 15:59:14 +0000 |
---|---|---|
committer | Philipp Lohmann <pl@openoffice.org> | 2001-05-11 15:59:14 +0000 |
commit | b1570d0e00b649e12be7c9f7f7a486f65b838a96 (patch) | |
tree | 4c65127c4afb1cdcd4601a07d9f7baa3d1f4c51c | |
parent | a90f9711d867f0f2ad7adc047af41bf28ef5351a (diff) |
rtl string api changes
-rw-r--r-- | sot/source/sdstor/stgelem.cxx | 8 | ||||
-rw-r--r-- | ucbhelper/source/provider/contentidentifier.cxx | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/sot/source/sdstor/stgelem.cxx b/sot/source/sdstor/stgelem.cxx index 87c31460e156..38dc434992f8 100644 --- a/sot/source/sdstor/stgelem.cxx +++ b/sot/source/sdstor/stgelem.cxx @@ -2,9 +2,9 @@ * * $RCSfile: stgelem.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: mm $ $Date: 2000-10-24 08:16:02 $ + * last change: $Author: pl $ $Date: 2001-05-11 16:59:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -292,7 +292,7 @@ BOOL StgEntry::SetName( const String& rName ) { // make upper case character in current language aName = rName; - aName = rtl::OUString( aName ).toUpperCase(); + aName = rtl::OUString( aName ).toAsciiUpperCase(); aName.Erase( 31 ); int i; @@ -402,7 +402,7 @@ BOOL StgEntry::Load( const void* pFrom ) aName = String( nName, n ); // make upper case character in current language - aName = rtl::OUString( aName ).toUpperCase(); + aName = rtl::OUString( aName ).toAsciiUpperCase(); aName.Erase( 31 ); return TRUE; } diff --git a/ucbhelper/source/provider/contentidentifier.cxx b/ucbhelper/source/provider/contentidentifier.cxx index ef263dad8d5a..f10a03c0da56 100644 --- a/ucbhelper/source/provider/contentidentifier.cxx +++ b/ucbhelper/source/provider/contentidentifier.cxx @@ -2,9 +2,9 @@ * * $RCSfile: contentidentifier.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: kz $ $Date: 2001-03-20 13:18:22 $ + * last change: $Author: pl $ $Date: 2001-05-11 16:55:37 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -127,7 +127,7 @@ ContentIdentifier_Impl::ContentIdentifier_Impl( if ( nPos != -1 ) { OUString aScheme( rURL.copy( 0, nPos ) ); - m_aProviderScheme = aScheme.toLowerCase(); + m_aProviderScheme = aScheme.toAsciiLowerCase(); m_aContentId = rURL.replaceAt( 0, nPos, aScheme ); } } |