diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/docpasswordrequest.hxx | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/comphelper/docpasswordrequest.hxx b/include/comphelper/docpasswordrequest.hxx index f8b19b180218..f5657a4b4ad9 100644 --- a/include/comphelper/docpasswordrequest.hxx +++ b/include/comphelper/docpasswordrequest.hxx @@ -24,6 +24,7 @@ #include <com/sun/star/task/PasswordRequestMode.hpp> #include <com/sun/star/task/XInteractionRequest.hpp> #include <cppuhelper/implbase.hxx> +#include <rtl/ref.hxx> namespace comphelper { @@ -56,9 +57,9 @@ private: virtual css::uno::Sequence< css::uno::Reference< css::task::XInteractionContinuation > > SAL_CALL getContinuations() throw( css::uno::RuntimeException, std::exception ) override; private: - css::uno::Any maRequest; - css::uno::Sequence< css::uno::Reference< css::task::XInteractionContinuation > > maContinuations; - PasswordContinuation * mpPassword; + css::uno::Any maRequest; + rtl::Reference<AbortContinuation> mxAbort; + rtl::Reference<PasswordContinuation> mxPassword; }; @@ -89,9 +90,9 @@ private: virtual css::uno::Sequence< css::uno::Reference< css::task::XInteractionContinuation > > SAL_CALL getContinuations() throw( css::uno::RuntimeException, std::exception ) override; private: - css::uno::Any maRequest; - css::uno::Sequence< css::uno::Reference< css::task::XInteractionContinuation > > maContinuations; - PasswordContinuation * mpPassword; + css::uno::Any maRequest; + rtl::Reference<AbortContinuation> mxAbort; + rtl::Reference<PasswordContinuation> mxPassword; }; |