summaryrefslogtreecommitdiff
path: root/stoc/source/registry_tdprovider/tdservice.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /stoc/source/registry_tdprovider/tdservice.cxx
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'stoc/source/registry_tdprovider/tdservice.cxx')
-rw-r--r--stoc/source/registry_tdprovider/tdservice.cxx11
1 files changed, 5 insertions, 6 deletions
diff --git a/stoc/source/registry_tdprovider/tdservice.cxx b/stoc/source/registry_tdprovider/tdservice.cxx
index 294f000db92c..de7795672938 100644
--- a/stoc/source/registry_tdprovider/tdservice.cxx
+++ b/stoc/source/registry_tdprovider/tdservice.cxx
@@ -30,7 +30,6 @@
#include <memory>
using namespace com::sun::star;
-using ::rtl::OUStringBuffer;
namespace {
@@ -40,7 +39,7 @@ class Constructor:
public:
Constructor(
Reference< XHierarchicalNameAccess > const & manager,
- rtl::OUString const & name, Sequence< sal_Int8 > const & bytes,
+ OUString const & name, Sequence< sal_Int8 > const & bytes,
sal_uInt16 index):
m_desc(manager, name, bytes, index) {}
@@ -49,7 +48,7 @@ public:
virtual sal_Bool SAL_CALL isDefaultConstructor() throw (RuntimeException)
{ return m_desc.getName().isEmpty(); }
- virtual rtl::OUString SAL_CALL getName() throw (RuntimeException)
+ virtual OUString SAL_CALL getName() throw (RuntimeException)
{ return m_desc.getName(); }
virtual Sequence< Reference< XParameter > > SAL_CALL getParameters()
@@ -338,7 +337,7 @@ ServiceTypeDescriptionImpl::getConstructors() throw (RuntimeException) {
ctorCount));
SAL_WNODEPRECATED_DECLARATIONS_POP
for (sal_uInt16 i = 0; i < ctorCount; ++i) {
- rtl::OUString name(reader.getMethodName(i));
+ OUString name(reader.getMethodName(i));
if (reader.getMethodFlags(i) != RT_MODE_TWOWAY
|| (reader.getMethodReturnTypeName(i) != "void")
|| (name.isEmpty()
@@ -346,7 +345,7 @@ ServiceTypeDescriptionImpl::getConstructors() throw (RuntimeException) {
|| reader.getMethodExceptionCount(i) != 0)))
{
throw RuntimeException(
- rtl::OUString(
+ OUString(
"Service has bad constructors"),
static_cast< OWeakObject * >(this));
}
@@ -373,7 +372,7 @@ void ServiceTypeDescriptionImpl::getReferences()
sal_uInt16 superTypes = aReader.getSuperTypeCount();
if (superTypes > 1) {
throw RuntimeException(
- rtl::OUString(
+ OUString(
"Service has more than one supertype"),
static_cast< OWeakObject * >(this));
}