diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-08-18 13:16:31 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-08-18 14:24:11 +0100 |
commit | 089620728299ab1688edaf066e9f9790d67449aa (patch) | |
tree | ad6f09018d00118fd046ea154d3217369a3c7af4 /ucb | |
parent | 7a31ae209304730e06e1f33333ebc81e7c7b5de9 (diff) |
cppcheck: noCopyConstructor
Change-Id: Id5323cb6f52666f85965e11b07e4f2bca8af4e78
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/ftp/ftpintreq.hxx | 3 | ||||
-rw-r--r-- | ucb/source/ucp/webdav/AprEnv.hxx | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ucb/source/ucp/ftp/ftpintreq.hxx b/ucb/source/ucp/ftp/ftpintreq.hxx index a00feb520dfd..1816662558bb 100644 --- a/ucb/source/ucp/ftp/ftpintreq.hxx +++ b/ucb/source/ucp/ftp/ftpintreq.hxx @@ -87,6 +87,9 @@ namespace ftp { XInteractionDisapproveImpl* p2; css::uno::Reference<css::task::XInteractionRequest> m_xRequest; + + XInteractionRequestImpl(const XInteractionRequestImpl&) = delete; + XInteractionRequestImpl& operator=(const XInteractionRequestImpl&) = delete; }; } diff --git a/ucb/source/ucp/webdav/AprEnv.hxx b/ucb/source/ucp/webdav/AprEnv.hxx index 3d724786c94a..8dae15db3689 100644 --- a/ucb/source/ucp/webdav/AprEnv.hxx +++ b/ucb/source/ucp/webdav/AprEnv.hxx @@ -47,6 +47,8 @@ class AprEnv AprEnv(); + AprEnv(const AprEnv&) = delete; + AprEnv& operator=(const AprEnv&) = delete; }; } // namespace apr_environment |