summaryrefslogtreecommitdiff
path: root/forms/source/component/propertybaghelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/component/propertybaghelper.cxx')
-rw-r--r--forms/source/component/propertybaghelper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/component/propertybaghelper.cxx b/forms/source/component/propertybaghelper.cxx
index c9f5ca0e4016..130008fd6ae2 100644
--- a/forms/source/component/propertybaghelper.cxx
+++ b/forms/source/component/propertybaghelper.cxx
@@ -222,19 +222,19 @@ namespace frm
namespace
{
- struct SelectNameOfProperty : public ::std::unary_function< Property, OUString >
+ struct SelectNameOfProperty
{
const OUString& operator()( const Property& _rProp ) const { return _rProp.Name; }
};
- struct SelectNameOfPropertyValue : public ::std::unary_function< PropertyValue, OUString >
+ struct SelectNameOfPropertyValue
{
const OUString& operator()( const PropertyValue& _rProp ) const { return _rProp.Name; }
};
- struct SelectValueOfPropertyValue : public ::std::unary_function< PropertyValue, Any >
+ struct SelectValueOfPropertyValue
{
const Any& operator()( const PropertyValue& _rProp ) const { return _rProp.Value; }
};