summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2017-01-17 19:06:30 +0100
committerMichael Stahl <mstahl@redhat.com>2017-01-17 19:08:53 +0100
commit3674aedb6e0832705004a713965c0caca55ef71a (patch)
tree8e747513d8df44b0e7db75ad61d2d47fa60508bc /include
parente81be49e242121e19a424cc467ec91adc82c7429 (diff)
comphelper: try to fix MSVC build
error C2027: use of undefined type ´comphelper::PasswordContinuation´ Change-Id: Iff5cfd1a81abc6adfbf1d3aedfb4f871b96d3504
Diffstat (limited to 'include')
-rw-r--r--include/comphelper/docpasswordrequest.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/comphelper/docpasswordrequest.hxx b/include/comphelper/docpasswordrequest.hxx
index 7891a148ed48..708d11cc78d9 100644
--- a/include/comphelper/docpasswordrequest.hxx
+++ b/include/comphelper/docpasswordrequest.hxx
@@ -52,6 +52,9 @@ public:
OUString getPassword() const;
private:
+ SimplePasswordRequest(SimplePasswordRequest const&) = delete;
+ SimplePasswordRequest& operator=(SimplePasswordRequest const&) = delete;
+
// XInteractionRequest
virtual css::uno::Any SAL_CALL getRequest() throw( css::uno::RuntimeException, std::exception ) override;
virtual css::uno::Sequence< css::uno::Reference< css::task::XInteractionContinuation > > SAL_CALL getContinuations() throw( css::uno::RuntimeException, std::exception ) override;
@@ -85,6 +88,9 @@ public:
bool getRecommendReadOnly() const;
private:
+ DocPasswordRequest(DocPasswordRequest const&) = delete;
+ DocPasswordRequest& operator=(DocPasswordRequest const&) = delete;
+
// XInteractionRequest
virtual css::uno::Any SAL_CALL getRequest() throw( css::uno::RuntimeException, std::exception ) override;
virtual css::uno::Sequence< css::uno::Reference< css::task::XInteractionContinuation > > SAL_CALL getContinuations() throw( css::uno::RuntimeException, std::exception ) override;