diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-17 09:31:38 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-17 11:44:56 +0000 |
commit | 8de63ad5bb2a60f7306a9bfe15384cd0164109df (patch) | |
tree | 6f1f5947a1ddc1cc1a883cb8c21afee8fc582124 /include/toolkit | |
parent | 0f46d90621eb5af6548ec6e9933b3a041728bd4e (diff) |
some more de-boostification
Change-Id: I8ee8fd7b99598e484430d91e17e468951288d72d
Diffstat (limited to 'include/toolkit')
-rw-r--r-- | include/toolkit/awt/animatedimagespeer.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/toolkit/awt/animatedimagespeer.hxx b/include/toolkit/awt/animatedimagespeer.hxx index 15dcac26e7eb..b0e366d1654b 100644 --- a/include/toolkit/awt/animatedimagespeer.hxx +++ b/include/toolkit/awt/animatedimagespeer.hxx @@ -27,7 +27,6 @@ #include <cppuhelper/implbase3.hxx> -#include <boost/noncopyable.hpp> #include <memory> namespace toolkit @@ -45,7 +44,6 @@ namespace toolkit > AnimatedImagesPeer_Base; class AnimatedImagesPeer :public AnimatedImagesPeer_Base - ,public ::boost::noncopyable { public: AnimatedImagesPeer(); @@ -86,6 +84,9 @@ namespace toolkit void impl_updateImages_nolck( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& i_animatedImages ); private: + AnimatedImagesPeer(const AnimatedImagesPeer&) SAL_DELETED_FUNCTION; + AnimatedImagesPeer& operator=(const AnimatedImagesPeer&) SAL_DELETED_FUNCTION; + std::unique_ptr< AnimatedImagesPeer_Data > m_xData; }; |