summaryrefslogtreecommitdiff
path: root/forms/source/component/GroupManager.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/component/GroupManager.hxx')
-rw-r--r--forms/source/component/GroupManager.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/component/GroupManager.hxx b/forms/source/component/GroupManager.hxx
index 5c3f2966ef9c..791c96efe25b 100644
--- a/forms/source/component/GroupManager.hxx
+++ b/forms/source/component/GroupManager.hxx
@@ -71,7 +71,7 @@ namespace frm
template <class ELEMENT, class LESS_COMPARE>
sal_Int32 insert_sorted(::std::vector<ELEMENT>& _rArray, const ELEMENT& _rNewElement, const LESS_COMPARE& _rCompareOp)
{
- typename ::std::vector<ELEMENT>::iterator aInsertPos = lower_bound(
+ typename ::std::vector<ELEMENT>::iterator aInsertPos = ::std::lower_bound(
_rArray.begin(),
_rArray.end(),
_rNewElement,
@@ -84,7 +84,7 @@ namespace frm
template <class ELEMENT, class LESS_COMPARE>
sal_Bool seek_entry(const ::std::vector<ELEMENT>& _rArray, const ELEMENT& _rNewElement, sal_Int32& nPos, const LESS_COMPARE& _rCompareOp)
{
- typename ::std::vector<ELEMENT>::const_iterator aExistentPos = lower_bound(
+ typename ::std::vector<ELEMENT>::const_iterator aExistentPos = ::std::lower_bound(
_rArray.begin(),
_rArray.end(),
_rNewElement,