diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-11-08 14:55:21 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-11-10 09:53:01 +0100 |
commit | 8faf693cd11579e5c4d1ff2d017b1bb875d91ec1 (patch) | |
tree | 0e26547909ae489c560e573e4b284899b85fdf2c /include/basic | |
parent | b875ceabf0bd5572e15afccc2cbedaa783badca0 (diff) |
loplugin:fieldcast in ModuleSizeExceeded
Change-Id: I1903967d94fcd738b9e2ed8de9a19d42614a749e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159252
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/basic')
-rw-r--r-- | include/basic/modsizeexceeded.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/basic/modsizeexceeded.hxx b/include/basic/modsizeexceeded.hxx index 8910be30b767..e2a32f954257 100644 --- a/include/basic/modsizeexceeded.hxx +++ b/include/basic/modsizeexceeded.hxx @@ -24,6 +24,8 @@ #include <com/sun/star/task/XInteractionRequest.hpp> #include <cppuhelper/implbase.hxx> #include <basic/basicdllapi.h> +#include <comphelper/interaction.hxx> +#include <rtl/ref.hxx> #include <vector> namespace com::sun::star::task { class XInteractionContinuation; } @@ -56,8 +58,8 @@ public: private: css::uno::Any m_aRequest; css::uno::Sequence< css::uno::Reference< css::task::XInteractionContinuation > > m_lContinuations; - css::uno::Reference< css::task::XInteractionContinuation > m_xAbort; - css::uno::Reference< css::task::XInteractionContinuation> m_xApprove; + rtl::Reference< comphelper::OInteractionAbort > m_xAbort; + rtl::Reference< comphelper::OInteractionApprove> m_xApprove; }; #endif |