summaryrefslogtreecommitdiff
path: root/cli_ure/source/uno_bridge/cli_proxy.h
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 /cli_ure/source/uno_bridge/cli_proxy.h
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 'cli_ure/source/uno_bridge/cli_proxy.h')
-rw-r--r--cli_ure/source/uno_bridge/cli_proxy.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cli_ure/source/uno_bridge/cli_proxy.h b/cli_ure/source/uno_bridge/cli_proxy.h
index 657cc69c0c98..5f63a7581d88 100644
--- a/cli_ure/source/uno_bridge/cli_proxy.h
+++ b/cli_ure/source/uno_bridge/cli_proxy.h
@@ -99,7 +99,7 @@ public:
static System::Object^ create(Bridge * bridge,
uno_Interface * pUnoI,
typelib_InterfaceTypeDescription* pTd,
- const rtl::OUString& oid);
+ const OUString& oid);
/** RealProxy::Invoke */
virtual srrm::IMessage^ Invoke(srrm::IMessage^ msg) override;
@@ -139,7 +139,7 @@ private:
Bridge * bridge,
uno_Interface * pUnoI,
typelib_InterfaceTypeDescription* pTD,
- const rtl::OUString& oid );
+ const OUString& oid );
static srrm::IMessage^ constructReturnMessage(System::Object^ retVal,
array<System::Object^>^ outArgs,
@@ -178,7 +178,7 @@ struct CliProxy: public uno_Interface
gcroot<System::Type^> m_type;
const com::sun::star::uno::TypeDescription m_unoType;
const gcroot<System::String^> m_oid;
- const rtl::OUString m_usOid;
+ const OUString m_usOid;
enum MethodKind {MK_METHOD = 0, MK_SET, MK_GET};
/** The array contains MethodInfos of the cli object. Each one reflects an
@@ -235,13 +235,13 @@ struct CliProxy: public uno_Interface
CliProxy( Bridge const* bridge, System::Object^ cliI,
typelib_TypeDescription const* pTD,
- const rtl::OUString& usOid);
+ const OUString& usOid);
~CliProxy();
static uno_Interface* create(Bridge const * bridge,
System::Object^ cliI,
typelib_TypeDescription const * TD,
- rtl::OUString const & usOid );
+ OUString const & usOid );
/** Prepares an array (m_arMethoInfos) containing MethodInfo object of the
interface and all inherited interfaces. At index null is the first
@@ -276,7 +276,7 @@ struct CliProxy: public uno_Interface
Position of the method in the uno interface.
*/
sr::MethodInfo^ getMethodInfo(int nUnoFunctionPos,
- const rtl::OUString & usMethodName,
+ const OUString & usMethodName,
MethodKind mk);
void SAL_CALL uno_DispatchMethod(