diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-04-01 23:42:46 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-04 06:54:36 +0000 |
commit | 8c2f2e1dd77cdce9bdf63beff5a79f91adc44630 (patch) | |
tree | 033a2ebbf8d3b4ae28bf837498c4fa76458d1dee /accessibility/inc | |
parent | 9338e4f5b1ffcba2d5b0bd8960dd8795d8909ff1 (diff) |
tdf#94306 replace boost::noncopyable in ..
.. accessibility, avmedia, basctl, basic and bridges
remove boost from module if not needed anymore
Change-Id: I6177f8276766a0a7df1703e81bf1b448912df6e2
Reviewed-on: https://gerrit.libreoffice.org/23744
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'accessibility/inc')
-rw-r--r-- | accessibility/inc/accessibility/extended/AccessibleBrowseBoxBase.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxBase.hxx b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxBase.hxx index 5dc82ad84c10..fe2035f5cc4d 100644 --- a/accessibility/inc/accessibility/extended/AccessibleBrowseBoxBase.hxx +++ b/accessibility/inc/accessibility/extended/AccessibleBrowseBoxBase.hxx @@ -23,7 +23,6 @@ #include <sal/config.h> -#include <boost/noncopyable.hpp> #include <svtools/AccessibleBrowseBoxObjType.hxx> #include <rtl/ustring.hxx> #include <tools/gen.hxx> @@ -349,7 +348,6 @@ typedef ::cppu::ImplHelper1 < css::accessibility::XAccessible class BrowseBoxAccessibleElement :public AccessibleBrowseBoxBase ,public BrowseBoxAccessibleElement_Base - ,private boost::noncopyable { protected: /** Constructor sets specified name and description. If the constant of a @@ -387,6 +385,9 @@ protected: const OUString& rDescription ); public: + // noncopyable + BrowseBoxAccessibleElement(const BrowseBoxAccessibleElement&) = delete; + const BrowseBoxAccessibleElement& operator=(const BrowseBoxAccessibleElement&) = delete; // XInterface DECLARE_XINTERFACE( ) // XTypeProvider |