summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-05 11:32:52 +0200
committerNoel Grandin <noel@peralex.com>2013-11-11 12:58:12 +0200
commitef90021abe3735fba57145598fd7c3d359d2718e (patch)
tree9da3ef32700774f56e0225ea28f3bc4ceaffe80c /dbaccess
parent0a9ef5a18e148c7a5c9a088e153a7873d1564841 (diff)
convert OUString !compareToAscii to equalsAscii
Convert code like if( ! aStr.compareToAscii("XXX") ) to if( aStr.equalsAscii("XXX") ) which is both clearer and faster. Change-Id: I267511bccab52f5225b291acbfa4e388b5a5302b
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/core/dataaccess/datasource.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/core/dataaccess/datasource.cxx b/dbaccess/source/core/dataaccess/datasource.cxx
index adfe1f97138d..94cd6da18a1d 100644
--- a/dbaccess/source/core/dataaccess/datasource.cxx
+++ b/dbaccess/source/core/dataaccess/datasource.cxx
@@ -423,14 +423,14 @@ namespace
const AsciiPropertyValue* pSetting = _pKnownSettings;
for ( ; pSetting->AsciiName; ++pSetting )
{
- if ( !pDataSourceSetting->Name.compareToAscii( pSetting->AsciiName ) )
+ if ( pDataSourceSetting->Name.equalsAscii( pSetting->AsciiName ) )
{ // the particular data source setting is known
const DriverPropertyInfo* pAllowedDriverSetting = aDriverInfo.getConstArray();
const DriverPropertyInfo* pDriverSettingsEnd = pAllowedDriverSetting + aDriverInfo.getLength();
for ( ; pAllowedDriverSetting != pDriverSettingsEnd; ++pAllowedDriverSetting )
{
- if ( !pAllowedDriverSetting->Name.compareToAscii( pSetting->AsciiName ) )
+ if ( pAllowedDriverSetting->Name.equalsAscii( pSetting->AsciiName ) )
{ // the driver also allows this setting
bAllowSetting = sal_True;
break;