diff options
author | Tor Lillqvist <tml@collabora.com> | 2018-04-09 15:10:40 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-05-31 13:16:27 +0300 |
commit | 2ee43cff5cf0e4125e7b2bbb7c763069c6aca95c (patch) | |
tree | 2ea731303783529c94b4a73e4a6a0f6690316a1a /extensions | |
parent | 6c8c727ffd97e247f1ea43c1a47a55e6d5f68331 (diff) |
Prepare to handle out (and inout) parameters to event callbacks
Change-Id: I47054c1df40d1058618b0fbd3fdb82fa93ca8836
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/ole/unoobjw.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx index 4acd25081315..c76320195abe 100644 --- a/extensions/source/ole/unoobjw.cxx +++ b/extensions/source/ole/unoobjw.cxx @@ -1977,7 +1977,7 @@ public: ooo::vba::TypeAndIID aTypeAndIID); // XSink - void SAL_CALL Call( const OUString& Method, const Sequence< Any >& Arguments ) override; + void SAL_CALL Call( const OUString& Method, Sequence< Any >& Arguments ) override; private: IUnknown* mpUnkSink; @@ -1996,7 +1996,7 @@ Sink::Sink(IUnknown* pUnkSink, } void SAL_CALL -Sink::Call( const OUString& Method, const Sequence< Any >& Arguments ) +Sink::Call( const OUString& Method, Sequence< Any >& Arguments ) { SAL_INFO("extensions.olebridge", "Sink::Call(" << Method << ", " << Arguments.getLength() << " arguments)"); |