summaryrefslogtreecommitdiff
path: root/idl/source/prj
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-08 13:25:26 +0200
committerNoel Grandin <noel@peralex.com>2016-02-08 14:00:38 +0200
commitd61b45016ee4048068b8410c5e2635e8d84f9849 (patch)
tree16596fe4ec1c98ef4f664decd8103bfa1b20201a /idl/source/prj
parent04e22bee0a79008a39dc9d78a460941f738020a6 (diff)
SvString is a just thin wrapper around OString
eliminate it Change-Id: Icb91d25cc7bffb3060b9392f71d37e5a95844aa3
Diffstat (limited to 'idl/source/prj')
-rw-r--r--idl/source/prj/database.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/idl/source/prj/database.cxx b/idl/source/prj/database.cxx
index a9ff18ba92d2..a7f584f60c0d 100644
--- a/idl/source/prj/database.cxx
+++ b/idl/source/prj/database.cxx
@@ -267,7 +267,7 @@ SvMetaType * SvIdlDataBase::FindType( const SvMetaType * pPType,
SvMetaType * SvIdlDataBase::FindType( const OString& rName )
{
for( SvRefMemberList<SvMetaType *>::const_iterator it = aTypeList.begin(); it != aTypeList.end(); ++it )
- if( rName.equals((*it)->GetName().getString()) )
+ if( rName.equals((*it)->GetName()) )
return *it;
return nullptr;
}
@@ -294,7 +294,7 @@ SvMetaType * SvIdlDataBase::ReadKnownType( SvTokenStream & rInStm )
SvMetaType * pType = nullptr;
while( it != rList.end() )
{
- if( (*it)->GetName().getString().equals(aName) )
+ if( (*it)->GetName().equals(aName) )
{
pType = *it;
break;
@@ -378,7 +378,7 @@ SvMetaClass * SvIdlDataBase::ReadKnownClass( SvTokenStream & rInStm )
for( sal_uLong n = 0; n < aClassList.size(); n++ )
{
SvMetaClass * pClass = aClassList[n];
- if( pClass->GetName().getString().equals(pTok->GetString()) )
+ if( pClass->GetName().equals(pTok->GetString()) )
return pClass;
}