diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-20 13:18:33 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-20 13:56:08 +0200 |
commit | acebbee971136e6ee0a7bc75bd57d937d6e1c295 (patch) | |
tree | f56fec189343e1d9297918037b55263733243d7b /dbaccess | |
parent | d894fee80e40519cb579987b95cb3d19345dfa71 (diff) |
remove RTL_CONSTASCII_STRINGPARAM in OString::equalsL calls
Convert code like:
if (aByteStr.equalsL(RTL_CONSTASCII_STRINGPARAM("rem")))
to:
if (aByteStr.startsWith("rem"))
Change-Id: I09e40b3fdc87d59a8176c2a5f39cc6aa5cf5a576
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/dlg/dbfindex.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/dlg/dbfindex.cxx b/dbaccess/source/ui/dlg/dbfindex.cxx index 644df9427785..c7c76893157a 100644 --- a/dbaccess/source/ui/dlg/dbfindex.cxx +++ b/dbaccess/source/ui/dlg/dbfindex.cxx @@ -352,7 +352,7 @@ void ODbaseIndexDialog::Init() aNDX = aKeyName.copy(0,3); // yes -> add to the tables index list - if (aNDX.equalsL(RTL_CONSTASCII_STRINGPARAM("NDX"))) + if (aNDX.startsWith("NDX")) { aEntry = OStringToOUString(aInfFile.ReadKey(aKeyName), osl_getThreadTextEncoding()); rTabInfo.aIndexList.push_back( OTableIndex( aEntry ) ); @@ -455,7 +455,7 @@ void OTableInfo::WriteInfFile( const OUString& rDSN ) const aNDX = aKeyName.copy(0,3); //...if yes, delete index file, nKey is at subsequent key - if (aNDX.equalsL(RTL_CONSTASCII_STRINGPARAM("NDX"))) + if (aNDX.startsWith("NDX")) { aInfFile.DeleteKey(aKeyName); nKeyCnt--; |