diff options
author | Noel <noel.grandin@collabora.co.uk> | 2021-02-21 20:02:21 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-02-23 07:30:05 +0100 |
commit | 9a61e9a3356874a23a697ace57a53e3ada505d87 (patch) | |
tree | 81e1ffd58ae9d3f965a0f1cb15a1d8d4ad726fcb /include/ucbhelper | |
parent | 873df086db969cadc66087a5abdb1ff33f2c99f1 (diff) |
loplugin:refcounting in fpicker
Change-Id: Ia14d2a874d559c4438a33c8a46ec6076802cd637
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111285
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/ucbhelper')
-rw-r--r-- | include/ucbhelper/interceptedinteraction.hxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/ucbhelper/interceptedinteraction.hxx b/include/ucbhelper/interceptedinteraction.hxx index b6a410ca3dba..85699c1d534b 100644 --- a/include/ucbhelper/interceptedinteraction.hxx +++ b/include/ucbhelper/interceptedinteraction.hxx @@ -41,7 +41,10 @@ namespace ucbhelper{ only - or as base class if interactions must be modified. */ -class UCBHELPER_DLLPUBLIC InterceptedInteraction : public ::cppu::WeakImplHelper< css::task::XInteractionHandler > +// extra struct to work around MSVC linking issue +struct InterceptedInteraction_Base : public ::cppu::WeakImplHelper< css::task::XInteractionHandler > {}; + +class UCBHELPER_DLLPUBLIC InterceptedInteraction : public InterceptedInteraction_Base { // types |