From 3f65d353a652db15dbfd0a750e062286e70619a5 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 9 Apr 2014 09:53:01 +0200 Subject: Clean up function declarations Change-Id: Ife3cb18d22c57c9c2e59317b68cf11a4bf94a40a --- stoc/source/javavm/interact.cxx | 6 ++---- stoc/source/typeconv/convert.cxx | 2 ++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/stoc/source/javavm/interact.cxx b/stoc/source/javavm/interact.cxx index 78f393aba5b7..d8bdcb4d8e3d 100644 --- a/stoc/source/javavm/interact.cxx +++ b/stoc/source/javavm/interact.cxx @@ -49,7 +49,8 @@ private: } class InteractionRequest::RetryContinuation: - public cppu::WeakImplHelper1< css::task::XInteractionRetry > + public cppu::WeakImplHelper1, + private boost::noncopyable { public: inline RetryContinuation(): m_bSelected(false) {} @@ -59,9 +60,6 @@ public: bool isSelected() const; private: - RetryContinuation(RetryContinuation &); // not implemented - void operator =(RetryContinuation); // not implemented - virtual inline ~RetryContinuation() {} mutable osl::Mutex m_aMutex; diff --git a/stoc/source/typeconv/convert.cxx b/stoc/source/typeconv/convert.cxx index 65bc7798bbe9..beeddc3e5b58 100644 --- a/stoc/source/typeconv/convert.cxx +++ b/stoc/source/typeconv/convert.cxx @@ -41,6 +41,8 @@ #include #include +#include + using namespace com::sun::star::uno; using namespace com::sun::star::lang; using namespace com::sun::star::script; -- cgit