diff options
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/interactionhandler.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/uui/source/interactionhandler.cxx b/uui/source/interactionhandler.cxx index 56b60889090c..c45fb95f092d 100644 --- a/uui/source/interactionhandler.cxx +++ b/uui/source/interactionhandler.cxx @@ -19,7 +19,6 @@ #include <sal/config.h> -#include <boost/noncopyable.hpp> #include <com/sun/star/awt/XWindow.hpp> #include <com/sun/star/lang/XInitialization.hpp> #include <com/sun/star/lang/XServiceInfo.hpp> @@ -37,8 +36,7 @@ namespace { class UUIInteractionHandler: public cppu::WeakImplHelper< css::lang::XServiceInfo, css::lang::XInitialization, - css::task::XInteractionHandler2 >, - private boost::noncopyable + css::task::XInteractionHandler2 > { private: UUIInteractionHelper * m_pImpl; @@ -48,6 +46,9 @@ public: virtual ~UUIInteractionHandler(); + UUIInteractionHandler(const UUIInteractionHandler&) = delete; + UUIInteractionHandler& operator=(const UUIInteractionHandler&) = delete; + virtual OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException, std::exception) override; |