summaryrefslogtreecommitdiff
path: root/uui
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-04-15 08:39:28 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-04-15 08:39:28 +0200
commitf1433c21b14fd8d3419e45ed80e42a140ff1129c (patch)
tree940df54168e75bbaa6d5f9b16bd67192460695bf /uui
parentf981c42edac92ac03dd04e87baab238b84963de5 (diff)
Clean up function declarations
Change-Id: Ie9081e6ed0840fad98f52f9755767788db77f406
Diffstat (limited to 'uui')
-rw-r--r--uui/source/interactionhandler.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/uui/source/interactionhandler.cxx b/uui/source/interactionhandler.cxx
index c95e0e338aef..1cded67255a4 100644
--- a/uui/source/interactionhandler.cxx
+++ b/uui/source/interactionhandler.cxx
@@ -17,6 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#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>
@@ -34,14 +37,12 @@ namespace {
class UUIInteractionHandler:
public cppu::WeakImplHelper3< com::sun::star::lang::XServiceInfo,
com::sun::star::lang::XInitialization,
- com::sun::star::task::XInteractionHandler2 >
+ com::sun::star::task::XInteractionHandler2 >,
+ private boost::noncopyable
{
private:
UUIInteractionHelper * m_pImpl;
- UUIInteractionHandler(UUIInteractionHandler &); // not implemented
- void operator =(UUIInteractionHandler); // not implemented
-
public:
UUIInteractionHandler(com::sun::star::uno::Reference<
com::sun::star::uno::XComponentContext >