summaryrefslogtreecommitdiff
path: root/tubes
diff options
context:
space:
mode:
Diffstat (limited to 'tubes')
-rw-r--r--tubes/source/manager.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/tubes/source/manager.cxx b/tubes/source/manager.cxx
index 1a152cec3ae8..f8070ad1064e 100644
--- a/tubes/source/manager.cxx
+++ b/tubes/source/manager.cxx
@@ -827,21 +827,21 @@ AccountContactPairV TeleManager::getContacts()
rtl::OString TeleManager::getFullClientName()
{
OStringBuffer aBuf(64);
- aBuf.append( RTL_CONSTASCII_STRINGPARAM( LIBO_CLIENT_SUFFIX)).append( pImpl->msNameSuffix);
+ aBuf.append( LIBO_CLIENT_SUFFIX ).append( pImpl->msNameSuffix);
return aBuf.makeStringAndClear();
}
rtl::OString TeleManager::getFullServiceName()
{
OStringBuffer aBuf(64);
- aBuf.append( RTL_CONSTASCII_STRINGPARAM( LIBO_DTUBE_SERVICE)).append( pImpl->msNameSuffix);
+ aBuf.append( LIBO_DTUBE_SERVICE ).append( pImpl->msNameSuffix);
return aBuf.makeStringAndClear();
}
rtl::OString TeleManager::getFullObjectPath()
{
OStringBuffer aBuf(64);
- aBuf.append( '/').append( RTL_CONSTASCII_STRINGPARAM( LIBO_DTUBE_SERVICE)).append( pImpl->msNameSuffix);
+ aBuf.append( '/').append( LIBO_DTUBE_SERVICE ).append( pImpl->msNameSuffix);
OString aStr( aBuf.makeStringAndClear().replace( '.', '/'));
return aStr;
}