diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-04-10 09:31:46 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-10 09:31:46 +0200 |
commit | 1d25e1de0b9498e469cb052b2d86bf7f7ae6adae (patch) | |
tree | aadf57192d9f7fb1c38c9fb7f8f5099b04fe17cf /sfx2/source/explorer | |
parent | 4f9674beaaa51b85d8405cf5d125ca19d55c1b32 (diff) |
Clean up function declarations and some unused functions
Change-Id: I9d6e9df0b686c61597aaa0e194ab321445671a20
Diffstat (limited to 'sfx2/source/explorer')
-rw-r--r-- | sfx2/source/explorer/nochaos.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sfx2/source/explorer/nochaos.cxx b/sfx2/source/explorer/nochaos.cxx index dbe9f0809354..cb746f9d2519 100644 --- a/sfx2/source/explorer/nochaos.cxx +++ b/sfx2/source/explorer/nochaos.cxx @@ -17,7 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <sal/config.h> +#include <boost/noncopyable.hpp> #include <svl/itempool.hxx> #include <svl/poolitem.hxx> #include <svl/stritem.hxx> @@ -32,17 +34,13 @@ class CntItemPool; -class CntStaticPoolDefaults_Impl +class CntStaticPoolDefaults_Impl: private boost::noncopyable { sal_uInt32 m_nItems; SfxPoolItem** m_ppDefaults; SfxItemInfo* m_pItemInfos; private: - // Forbidden and not implemented... - CntStaticPoolDefaults_Impl( const CntStaticPoolDefaults_Impl& ); - CntStaticPoolDefaults_Impl& operator=( const CntStaticPoolDefaults_Impl& ); - inline void Insert( SfxPoolItem* pItem, sal_uInt16 nSID, sal_uInt16 nFlags ); public: |