summaryrefslogtreecommitdiffstats
path: root/unotools/source/misc/componentresmodule.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unotools/source/misc/componentresmodule.cxx')
-rw-r--r--unotools/source/misc/componentresmodule.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/unotools/source/misc/componentresmodule.cxx b/unotools/source/misc/componentresmodule.cxx
index 5d6fc7644ee0..7b75a86cdc51 100644
--- a/unotools/source/misc/componentresmodule.cxx
+++ b/unotools/source/misc/componentresmodule.cxx
@@ -18,8 +18,6 @@
*/
#include <unotools/componentresmodule.hxx>
-
-#include <boost/noncopyable.hpp>
#include <tools/resmgr.hxx>
#include <osl/diagnose.h>
#include <rtl/strbuf.hxx>
@@ -33,13 +31,16 @@ namespace utl
not threadsafe!
*/
- class OComponentResModuleImpl: private boost::noncopyable
+ class OComponentResModuleImpl
{
private:
ResMgr* m_pResources;
bool m_bInitialized;
OString m_sResFilePrefix;
+ OComponentResModuleImpl(const OComponentResModuleImpl&) SAL_DELETED_FUNCTION;
+ OComponentResModuleImpl& operator=(const OComponentResModuleImpl&) SAL_DELETED_FUNCTION;
+
public:
OComponentResModuleImpl( const OString& _rResFilePrefix )
:m_pResources( NULL )