summaryrefslogtreecommitdiff
path: root/filter/source/xmlfilteradaptor
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-13 09:56:52 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-13 12:05:42 +0200
commitdc63cc326ee5757124cef45e470d290e6e32002e (patch)
treee912d5e06b8602e391f3aa7e084e92c808f2fcfb /filter/source/xmlfilteradaptor
parent51a50cc95a8cb461b7026c1eb8908e17f4055076 (diff)
use more OUString::operator== in dbaccess..filter
Change-Id: Ib7b4f2b2403ce766a7db2f6ffc118468e7677776 Reviewed-on: https://gerrit.libreoffice.org/39889 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'filter/source/xmlfilteradaptor')
-rw-r--r--filter/source/xmlfilteradaptor/genericfilter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/xmlfilteradaptor/genericfilter.cxx b/filter/source/xmlfilteradaptor/genericfilter.cxx
index f40ef510ccb2..c2bebaaec1b8 100644
--- a/filter/source/xmlfilteradaptor/genericfilter.cxx
+++ b/filter/source/xmlfilteradaptor/genericfilter.cxx
@@ -34,7 +34,7 @@ SAL_DLLPUBLIC_EXPORT void * SAL_CALL xmlfa_component_getFactory(
{
void * pRet = nullptr;
OUString implName = OUString::createFromAscii( pImplName );
- if ( pServiceManager && implName.equals(XmlFilterAdaptor_getImplementationName()) )
+ if ( pServiceManager && implName == XmlFilterAdaptor_getImplementationName() )
{
Reference< XSingleServiceFactory > xFactory( createSingleFactory(
static_cast< XMultiServiceFactory * >( pServiceManager ),