diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-28 16:14:12 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-29 08:51:55 +0200 |
commit | 5d5c4686badbf67aa25b18701f25d90fa8b4e42a (patch) | |
tree | 39d10e1f40b12ee20c50d5eed313d46df054783d /include/sfx2/userinputinterception.hxx | |
parent | fbff75a64c7449aac85d640f67b1de147db35c3e (diff) |
remove boost::noncopyable from /include
Change-Id: I9fa22b06fabf79043ebc68be7afebc6e810f4db1
Diffstat (limited to 'include/sfx2/userinputinterception.hxx')
-rw-r--r-- | include/sfx2/userinputinterception.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/sfx2/userinputinterception.hxx b/include/sfx2/userinputinterception.hxx index 9f0cff06f879..54462aafd34c 100644 --- a/include/sfx2/userinputinterception.hxx +++ b/include/sfx2/userinputinterception.hxx @@ -24,7 +24,6 @@ #include <com/sun/star/awt/XUserInputInterception.hpp> -#include <boost/noncopyable.hpp> #include <memory> class NotifyEvent; @@ -43,11 +42,13 @@ namespace sfx2 /** helper class for implementing the XUserInputInterception interface for a controller implementation */ - class SFX2_DLLPUBLIC UserInputInterception : public ::boost::noncopyable + class SFX2_DLLPUBLIC UserInputInterception { public: UserInputInterception( ::cppu::OWeakObject& _rControllerImpl, ::osl::Mutex& _rMutex ); ~UserInputInterception(); + UserInputInterception(const UserInputInterception&) = delete; + UserInputInterception& operator=( const UserInputInterception& ) = delete; // delegator functions for your XUserInputInterception implementation void addKeyHandler( const css::uno::Reference< css::awt::XKeyHandler >& xHandler ) throw (css::uno::RuntimeException); |