diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-04-09 09:53:01 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-09 09:53:01 +0200 |
commit | 3f65d353a652db15dbfd0a750e062286e70619a5 (patch) | |
tree | 869a22287f799bbd7d3727df7692396758e7021d | |
parent | 81834cb481e997166a9cd5588a53f9de5a0c98cb (diff) |
Clean up function declarations
Change-Id: Ife3cb18d22c57c9c2e59317b68cf11a4bf94a40a
-rw-r--r-- | stoc/source/javavm/interact.cxx | 6 | ||||
-rw-r--r-- | 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<css::task::XInteractionRetry>, + 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 <com/sun/star/container/XSet.hpp> #include <com/sun/star/registry/XRegistryKey.hpp> +#include <stocservices.hxx> + using namespace com::sun::star::uno; using namespace com::sun::star::lang; using namespace com::sun::star::script; |