summaryrefslogtreecommitdiff
path: root/forms/source/component/ListBox.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/component/ListBox.cxx')
-rw-r--r--forms/source/component/ListBox.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx
index b077847499a8..fd889c9d667d 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -57,7 +57,6 @@
#include <boost/optional.hpp>
#include <algorithm>
-#include <functional>
#include <iterator>
namespace frm
@@ -468,11 +467,11 @@ namespace frm
const OUString* pSelectedItemsPos = ::std::find_if(
_rPropertyNames.begin(), _rPropertyNames.end(),
- ::std::bind2nd( ::std::equal_to< OUString >(), PROPERTY_SELECT_SEQ )
+ [](OUString const & s) { return s == PROPERTY_SELECT_SEQ; }
);
const OUString* pStringItemListPos = ::std::find_if(
_rPropertyNames.begin(), _rPropertyNames.end(),
- ::std::bind2nd( ::std::equal_to< OUString >(), PROPERTY_STRINGITEMLIST )
+ [](OUString const & s) { return s == PROPERTY_STRINGITEMLIST; }
);
if ( ( pSelectedItemsPos != _rPropertyNames.end() ) && ( pStringItemListPos != _rPropertyNames.end() ) )
{