diff options
Diffstat (limited to 'include/vbahelper/vbahelperinterface.hxx')
-rw-r--r-- | include/vbahelper/vbahelperinterface.hxx | 2 |
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; } |