diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-12 19:47:40 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-14 08:41:17 +0200 |
commit | e6ad419ac923180fd951e2db901fd840aa4914b1 (patch) | |
tree | 2b429dce49e3bac665e83e1f7e3d0cb04046e1b9 /include/ucbhelper | |
parent | aa5f99e565e55ab5c7b32c88697c44541aa77745 (diff) |
simplify construction
Change-Id: Ib8a28575fe813a909ce5429732a60ae77f92b6ac
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134269
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/ucbhelper')
-rw-r--r-- | include/ucbhelper/interceptedinteraction.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/ucbhelper/interceptedinteraction.hxx b/include/ucbhelper/interceptedinteraction.hxx index b94f51cf9bb2..78344c319903 100644 --- a/include/ucbhelper/interceptedinteraction.hxx +++ b/include/ucbhelper/interceptedinteraction.hxx @@ -87,6 +87,10 @@ class UCBHELPER_DLLPUBLIC InterceptedInteraction : public InterceptedInteraction { Handle = INVALID_HANDLE; } + InterceptedRequest(css::uno::Any Request_, css::uno::Type Continuation_, sal_Int32 Handle_) + : Request(std::move(Request_)), Continuation(std::move(Continuation_)), Handle(Handle_) + { + } }; |