From 4d6560f5066d143552cba861aaadc2f49b4357d4 Mon Sep 17 00:00:00 2001 From: Marcos Paulo de Souza Date: Tue, 4 Mar 2014 08:41:53 -0300 Subject: fdo#54938: Convert some places to use cppu::supportsService The last cases are non obvious, so it's pratically done Change-Id: Icae1da8e238f516eaed0f7fbdf96fff778eac547 Reviewed-on: https://gerrit.libreoffice.org/8445 Reviewed-by: Marcos Paulo de Souza Tested-by: Marcos Paulo de Souza --- mysqlc/source/mysqlc_driver.cxx | 2 -- mysqlc/source/mysqlc_resultset.cxx | 2 -- 2 files changed, 4 deletions(-) (limited to 'mysqlc/source') diff --git a/mysqlc/source/mysqlc_driver.cxx b/mysqlc/source/mysqlc_driver.cxx index 05cd9e0e4fff..850d47fd6be8 100644 --- a/mysqlc/source/mysqlc_driver.cxx +++ b/mysqlc/source/mysqlc_driver.cxx @@ -108,11 +108,9 @@ OUString SAL_CALL MysqlCDriver::getImplementationName() } /* }}} */ -/* {{{ MysqlCDriver::supportsService() -I- */ sal_Bool SAL_CALL MysqlCDriver::supportsService(const OUString& _rServiceName) throw(RuntimeException, std::exception) { - OSL_TRACE("MysqlCDriver::supportsService"); return cppu::supportsService(this, _rServiceName); } /* }}} */ diff --git a/mysqlc/source/mysqlc_resultset.cxx b/mysqlc/source/mysqlc_resultset.cxx index cafcd8e2aa17..aa602f631be2 100644 --- a/mysqlc/source/mysqlc_resultset.cxx +++ b/mysqlc/source/mysqlc_resultset.cxx @@ -70,11 +70,9 @@ Sequence< OUString > SAL_CALL OResultSet::getSupportedServiceNames() } /* }}} */ -/* {{{ OResultSet::supportsService() -I- */ sal_Bool SAL_CALL OResultSet::supportsService(const OUString& _rServiceName) throw(RuntimeException, std::exception) { - OSL_TRACE("OResultSet::supportsService"); return cppu::supportsService(this, _rServiceName); } /* }}} */ -- cgit