summaryrefslogtreecommitdiff
path: root/io/source/connector/connector.cxx
diff options
context:
space:
mode:
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 );