summaryrefslogtreecommitdiff
path: root/io/source/connector/connector.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-12-12 15:05:28 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-13 06:10:04 +0000
commita005fbeddc4e615cfff56a9bd84355f8d42c1c8c (patch)
treef7e561a362b6aa005ceea7e6176e35f05790462a /io/source/connector/connector.cxx
parent81f2a9f46451492d4d879573bc9ac7f2e44abedb (diff)
OSL_TRACE->SAL in framework..sal
Change-Id: I9a897af88aa9f6f7ca98ce521c69b5a4ee8462e9 Reviewed-on: https://gerrit.libreoffice.org/31903 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'io/source/connector/connector.cxx')
-rw-r--r--io/source/connector/connector.cxx12
1 files changed, 1 insertions, 11 deletions
diff --git a/io/source/connector/connector.cxx b/io/source/connector/connector.cxx
index 695326718c25..d12296295700 100644
--- a/io/source/connector/connector.cxx
+++ b/io/source/connector/connector.cxx
@@ -73,11 +73,6 @@ namespace stoc_connector
Reference< XConnection > SAL_CALL OConnector::connect( const OUString& sConnectionDescription )
throw( NoConnectException, ConnectionSetupException, RuntimeException, std::exception)
{
- OSL_TRACE(
- "connector %s\n",
- OUStringToOString(
- sConnectionDescription, RTL_TEXTENCODING_ASCII_US).getStr());
-
// split string into tokens
try
{
@@ -143,13 +138,8 @@ namespace stoc_connector
}
else
{
- OUString delegatee("com.sun.star.connection.Connector.");
- delegatee += aDesc.getName();
+ OUString delegatee= "com.sun.star.connection.Connector." + aDesc.getName();
- OSL_TRACE(
- "connector: trying to get service %s\n",
- OUStringToOString(
- delegatee, RTL_TEXTENCODING_ASCII_US).getStr());
Reference<XConnector> xConnector(
_xSMgr->createInstanceWithContext(delegatee, _xCtx), UNO_QUERY );