summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-17 15:48:46 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-17 15:49:20 +0000
commit88df09f2ec12c3956032eb1477c0a8350606f146 (patch)
treee3b1b61dd749e06c3223735ff6bed3a5aad620c3 /include
parent6574aa57db96938248388c470d4061eca70bfa2e (diff)
we can use XInteractionAbort instead of AbortContinuation
Change-Id: I7b3a6e0dc4dba345ee9581f4743a3b4fd9f7d736
Diffstat (limited to 'include')
-rw-r--r--include/comphelper/docpasswordrequest.hxx6
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;
};