summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-05 11:06:18 +0200
committerNoel Grandin <noel@peralex.com>2013-11-11 12:58:12 +0200
commit0a9ef5a18e148c7a5c9a088e153a7873d1564841 (patch)
tree3c3bc21e7ee4f836a1d056695175e0b1a91eda26 /sfx2
parent7944301424aac0943e4ecc0410f495b210ad3b79 (diff)
convert OUString 0==compareToAscii to equalsAscii
Convert code like: 0 == aStr.compareToAscii("XXX") to aStr.equalsAscii("XXX") which is both clearer and faster. Change-Id: I2e906d7d38494db38eb292702fadb781b1251e07
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/appl/helpdispatch.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/appl/helpdispatch.cxx b/sfx2/source/appl/helpdispatch.cxx
index 5ce49523ee0c..ee6b5d207078 100644
--- a/sfx2/source/appl/helpdispatch.cxx
+++ b/sfx2/source/appl/helpdispatch.cxx
@@ -64,10 +64,10 @@ void SAL_CALL HelpDispatch_Impl::dispatch(
const PropertyValue* pEnd = pBegin + aArgs.getLength();
for ( ; pBegin != pEnd; ++pBegin )
{
- if ( 0 == ( *pBegin ).Name.compareToAscii( "HelpKeyword" ) )
+ if ( pBegin->Name.equalsAscii( "HelpKeyword" ) )
{
OUString sHelpKeyword;
- if ( ( ( *pBegin ).Value >>= sHelpKeyword ) && !sHelpKeyword.isEmpty() )
+ if ( ( pBegin->Value >>= sHelpKeyword ) && !sHelpKeyword.isEmpty() )
{
sKeyword = sHelpKeyword;
bHasKeyword = !sKeyword.isEmpty();