summaryrefslogtreecommitdiff
path: root/basic/source/sbx/sbxcoll.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/sbx/sbxcoll.cxx')
-rw-r--r--basic/source/sbx/sbxcoll.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/basic/source/sbx/sbxcoll.cxx b/basic/source/sbx/sbxcoll.cxx
index 40b4a9fb2fd7..581d98d2a976 100644
--- a/basic/source/sbx/sbxcoll.cxx
+++ b/basic/source/sbx/sbxcoll.cxx
@@ -37,10 +37,10 @@ SbxCollection::SbxCollection( const OUString& rClass )
{
if( !nCountHash )
{
- pCount = rtl::OUString::createFromAscii(GetSbxRes( STRING_COUNTPROP ));
- pAdd = rtl::OUString::createFromAscii(GetSbxRes( STRING_ADDMETH ));
- pItem = rtl::OUString::createFromAscii(GetSbxRes( STRING_ITEMMETH ));
- pRemove = rtl::OUString::createFromAscii(GetSbxRes( STRING_REMOVEMETH ));
+ pCount = OUString::createFromAscii(GetSbxRes( STRING_COUNTPROP ));
+ pAdd = OUString::createFromAscii(GetSbxRes( STRING_ADDMETH ));
+ pItem = OUString::createFromAscii(GetSbxRes( STRING_ITEMMETH ));
+ pRemove = OUString::createFromAscii(GetSbxRes( STRING_REMOVEMETH ));
nCountHash = MakeHashCode( pCount );
nAddHash = MakeHashCode( pAdd );
nItemHash = MakeHashCode( pItem );
@@ -101,7 +101,7 @@ SbxVariable* SbxCollection::FindUserData( sal_uInt32 nData )
}
}
-SbxVariable* SbxCollection::Find( const rtl::OUString& rName, SbxClassType t )
+SbxVariable* SbxCollection::Find( const OUString& rName, SbxClassType t )
{
if( GetParameters() )
{