summaryrefslogtreecommitdiff
path: root/forms/source
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source')
-rw-r--r--forms/source/component/ListBox.cxx8
-rw-r--r--forms/source/component/propertybaghelper.cxx6
-rw-r--r--forms/source/misc/InterfaceContainer.cxx2
3 files changed, 8 insertions, 8 deletions
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx
index 958258327049..3e50047e1803 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -87,7 +87,7 @@ namespace frm
namespace
{
- struct RowSetValueToString : public ::std::unary_function< ORowSetValue, OUString >
+ struct RowSetValueToString
{
OUString operator()( const ORowSetValue& _value ) const
{
@@ -96,7 +96,7 @@ namespace frm
};
- struct AppendRowSetValueString : public ::std::unary_function< OUString, void >
+ struct AppendRowSetValueString
{
explicit AppendRowSetValueString( OUString& _string )
:m_string( _string )
@@ -1473,7 +1473,7 @@ namespace frm
namespace
{
- struct ExtractStringFromSequence_Safe : public ::std::unary_function< sal_Int16, OUString >
+ struct ExtractStringFromSequence_Safe
{
protected:
const std::vector< OUString >& m_rList;
@@ -1544,7 +1544,7 @@ namespace frm
}
- struct ExtractAnyFromValueList_Safe : public ::std::unary_function< sal_Int16, Any >
+ struct ExtractAnyFromValueList_Safe
{
protected:
const ValueList& m_rList;
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; }
};
diff --git a/forms/source/misc/InterfaceContainer.cxx b/forms/source/misc/InterfaceContainer.cxx
index 7b796e3d10fe..c251c17d3587 100644
--- a/forms/source/misc/InterfaceContainer.cxx
+++ b/forms/source/misc/InterfaceContainer.cxx
@@ -356,7 +356,7 @@ void SAL_CALL OInterfaceContainer::writeEvents(const Reference<XObjectOutputStre
}
-struct TransformEventTo52Format : public ::std::unary_function< ScriptEventDescriptor, void >
+struct TransformEventTo52Format
{
void operator()( ScriptEventDescriptor& _rDescriptor )
{