summaryrefslogtreecommitdiffstats
path: root/include/vbahelper/vbahelperinterface.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vbahelper/vbahelperinterface.hxx')
-rw-r--r--include/vbahelper/vbahelperinterface.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vbahelper/vbahelperinterface.hxx b/include/vbahelper/vbahelperinterface.hxx
index eee4523d6989..d68767ddd7dc 100644
--- a/include/vbahelper/vbahelperinterface.hxx
+++ b/include/vbahelper/vbahelperinterface.hxx
@@ -95,7 +95,7 @@ public:
const OUString* pStart = sServices.getConstArray();
const OUString* pEnd = pStart + sServices.getLength();
for ( ; pStart != pEnd ; ++pStart )
- if ( (*pStart).equals( ServiceName ) )
+ if ( *pStart == ServiceName )
return true;
return false;
}