summaryrefslogtreecommitdiffstats
path: root/binaryurp/source/proxy.cxx
diff options
context:
space:
mode:
authorRicardo Montania <ricardo@linuxafundo.com.br>2012-08-18 15:05:22 -0300
committerAndras Timar <atimar@suse.com>2012-08-22 16:45:38 +0200
commite47fe5cc409b4df2ee3ae58ecf911c1e155bf2e7 (patch)
treeca84fedff1af17c7f42cea8c2ca3f4b74c41d0ee /binaryurp/source/proxy.cxx
parentPining for the fjords (diff)
downloadcore-e47fe5cc409b4df2ee3ae58ecf911c1e155bf2e7.tar.gz
core-e47fe5cc409b4df2ee3ae58ecf911c1e155bf2e7.zip
Change rtl::OUString to OUString
My first commit. Any problem, question, warnings, please tell me. Change-Id: Ibb02fe15776f3ffe74ddb9488c63a45c447bb493
Diffstat (limited to 'binaryurp/source/proxy.cxx')
-rw-r--r--binaryurp/source/proxy.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/binaryurp/source/proxy.cxx b/binaryurp/source/proxy.cxx
index 9c9921881f43..955c6149eca7 100644
--- a/binaryurp/source/proxy.cxx
+++ b/binaryurp/source/proxy.cxx
@@ -65,7 +65,7 @@ extern "C" void SAL_CALL proxy_dispatchInterface(
}
Proxy::Proxy(
- rtl::Reference< Bridge > const & bridge, rtl::OUString const & oid,
+ rtl::Reference< Bridge > const & bridge, OUString const & oid,
css::uno::TypeDescription const & type):
bridge_(bridge), oid_(oid), type_(type), references_(1)
{
@@ -75,7 +75,7 @@ Proxy::Proxy(
pDispatcher = &proxy_dispatchInterface;
}
-rtl::OUString Proxy::getOid() const {
+OUString Proxy::getOid() const {
return oid_;
}
@@ -109,7 +109,7 @@ void Proxy::do_dispatch(
do_dispatch_throw(member, returnValue, arguments, exception);
} catch (const std::exception & e) {
throw css::uno::RuntimeException(
- (rtl::OUString(
+ (OUString(
RTL_CONSTASCII_USTRINGPARAM("caught C++ exception: ")) +
rtl::OStringToOUString(
rtl::OString(e.what()), RTL_TEXTENCODING_ASCII_US)),
@@ -128,7 +128,7 @@ void Proxy::do_dispatch(
bool Proxy::isProxy(
rtl::Reference< Bridge > const & bridge,
- css::uno::UnoInterfaceReference const & object, rtl::OUString * oid)
+ css::uno::UnoInterfaceReference const & object, OUString * oid)
{
assert(object.is());
return object.m_pUnoI->acquire == &proxy_acquireInterface &&
@@ -237,7 +237,7 @@ void Proxy::do_dispatch_throw(
}
bool Proxy::isProxy(
- rtl::Reference< Bridge > const & bridge, rtl::OUString * oid) const
+ rtl::Reference< Bridge > const & bridge, OUString * oid) const
{
assert(oid != 0);
if (bridge == bridge_) {