diff options
-rw-r--r-- | include/comphelper/docpasswordrequest.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/comphelper/docpasswordrequest.hxx b/include/comphelper/docpasswordrequest.hxx index f5657a4b4ad9..7891a148ed48 100644 --- a/include/comphelper/docpasswordrequest.hxx +++ b/include/comphelper/docpasswordrequest.hxx @@ -22,13 +22,13 @@ #include <comphelper/comphelperdllapi.h> #include <com/sun/star/task/PasswordRequestMode.hpp> +#include <com/sun/star/task/XInteractionAbort.hpp> #include <com/sun/star/task/XInteractionRequest.hpp> #include <cppuhelper/implbase.hxx> #include <rtl/ref.hxx> namespace comphelper { -class AbortContinuation; class PasswordContinuation; @@ -58,7 +58,7 @@ private: private: css::uno::Any maRequest; - rtl::Reference<AbortContinuation> mxAbort; + css::uno::Reference<css::task::XInteractionAbort> mxAbort; rtl::Reference<PasswordContinuation> mxPassword; }; @@ -91,7 +91,7 @@ private: private: css::uno::Any maRequest; - rtl::Reference<AbortContinuation> mxAbort; + css::uno::Reference<css::task::XInteractionAbort> mxAbort; rtl::Reference<PasswordContinuation> mxPassword; }; |