diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-02-16 13:03:53 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-02-16 13:11:36 +0000 |
commit | bf96ec5d8af6fe806ee634e556f7a9a105894f0f (patch) | |
tree | 71e6ad177bc6b93b549790fe2d884760a768ac7d /include/basic | |
parent | 6b45e4fa5381d119ff0759825454a7154e1363b7 (diff) |
boost->std
Change-Id: I44b208a2c5c5bf73ac025462c9f7bd499ed0a49b
Diffstat (limited to 'include/basic')
-rw-r--r-- | include/basic/codecompletecache.hxx | 1 | ||||
-rw-r--r-- | include/basic/sbmod.hxx | 5 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/basic/codecompletecache.hxx b/include/basic/codecompletecache.hxx index dad54f082b2c..591daf9186a0 100644 --- a/include/basic/codecompletecache.hxx +++ b/include/basic/codecompletecache.hxx @@ -23,7 +23,6 @@ #include <basic/sbdef.hxx> #include <basic/sbxobj.hxx> #include <basic/sbxdef.hxx> -#include <boost/utility.hpp> #include <rtl/ustring.hxx> #include <svtools/miscopt.hxx> #include <unordered_map> diff --git a/include/basic/sbmod.hxx b/include/basic/sbmod.hxx index 2fd933fe3175..5aaafa73ea3b 100644 --- a/include/basic/sbmod.hxx +++ b/include/basic/sbmod.hxx @@ -28,7 +28,6 @@ #include <rtl/ustring.hxx> #include <vector> #include <deque> -#include <boost/utility.hpp> #include <basic/basicdllapi.h> #include <basic/codecompletecache.hxx> @@ -46,7 +45,7 @@ class ModuleInitDependencyMap; struct ClassModuleRunInitItem; struct SbClassData; -class BASIC_DLLPUBLIC SbModule : public SbxObject, private ::boost::noncopyable +class BASIC_DLLPUBLIC SbModule : public SbxObject { friend class SbiCodeGen; friend class SbMethod; @@ -58,6 +57,8 @@ class BASIC_DLLPUBLIC SbModule : public SbxObject, private ::boost::noncopyable BASIC_DLLPRIVATE void implClearIfVarDependsOnDeletedBasic( SbxVariable* pVar, StarBASIC* pDeletedBasic ); + SbModule(const SbModule&) SAL_DELETED_FUNCTION; + SbModule& operator=(const SbModule&) SAL_DELETED_FUNCTION; protected: com::sun::star::uno::Reference< com::sun::star::script::XInvocation > mxWrapper; OUString aOUSource; |