summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
Diffstat (limited to 'forms')
-rw-r--r--forms/source/inc/propertybaghelper.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/inc/propertybaghelper.hxx b/forms/source/inc/propertybaghelper.hxx
index a309085241c2..f4ca932704ef 100644
--- a/forms/source/inc/propertybaghelper.hxx
+++ b/forms/source/inc/propertybaghelper.hxx
@@ -25,8 +25,6 @@
#include <comphelper/propertybag.hxx>
#include <comphelper/propagg.hxx>
-#include <boost/noncopyable.hpp>
-
namespace frm
{
@@ -51,7 +49,7 @@ namespace frm
~IPropertyBagHelperContext() {}
};
- class PropertyBagHelper : public ::boost::noncopyable
+ class PropertyBagHelper
{
private:
IPropertyBagHelperContext& m_rContext;
@@ -62,6 +60,8 @@ namespace frm
public:
PropertyBagHelper( IPropertyBagHelperContext& _rContext );
~PropertyBagHelper();
+ PropertyBagHelper(const PropertyBagHelper&) = delete;
+ PropertyBagHelper& operator=(const PropertyBagHelper&) = delete;
// XComponent equivalent
void dispose();