summaryrefslogtreecommitdiff
path: root/binaryurp/source/proxy.hxx
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.hxx
parent438f5023c3f22b521974c6a1bb4d53b59255b724 (diff)
Change rtl::OUString to OUString
My first commit. Any problem, question, warnings, please tell me. Change-Id: Ibb02fe15776f3ffe74ddb9488c63a45c447bb493
Diffstat (limited to 'binaryurp/source/proxy.hxx')
-rw-r--r--binaryurp/source/proxy.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/binaryurp/source/proxy.hxx b/binaryurp/source/proxy.hxx
index 188c564cda9c..b3bd4b56b362 100644
--- a/binaryurp/source/proxy.hxx
+++ b/binaryurp/source/proxy.hxx
@@ -41,10 +41,10 @@ namespace binaryurp {
class Proxy: public uno_Interface, private boost::noncopyable {
public:
Proxy(
- rtl::Reference< Bridge > const & bridge, rtl::OUString const & oid,
+ rtl::Reference< Bridge > const & bridge, OUString const & oid,
com::sun::star::uno::TypeDescription const & type);
- rtl::OUString getOid() const;
+ OUString getOid() const;
com::sun::star::uno::TypeDescription getType() const;
@@ -61,7 +61,7 @@ public:
static bool isProxy(
rtl::Reference< Bridge > const & bridge,
com::sun::star::uno::UnoInterfaceReference const & object,
- rtl::OUString * oid);
+ OUString * oid);
private:
~Proxy();
@@ -70,11 +70,11 @@ private:
typelib_TypeDescription const * member, void * returnValue,
void ** arguments, uno_Any ** exception) const;
- bool isProxy(rtl::Reference< Bridge > const & bridge, rtl::OUString * oid)
+ bool isProxy(rtl::Reference< Bridge > const & bridge, OUString * oid)
const;
rtl::Reference< Bridge > bridge_;
- rtl::OUString oid_;
+ OUString oid_;
com::sun::star::uno::TypeDescription type_;
oslInterlockedCount references_;
};