summaryrefslogtreecommitdiff
path: root/forms/source/component/GroupManager.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 11:34:57 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 11:34:57 +0000
commitf594965bb22456ab62bb68f570a4abb9c73534a0 (patch)
tree48c0b94ee6655a78e6979d082ae48ca81c3e9f4d /forms/source/component/GroupManager.hxx
parent35c4f32bc6ff306336ccdb46b973e8eab2d81733 (diff)
INTEGRATION: CWS ooo20031216 (1.7.82); FILE MERGED
2003/12/13 13:14:28 waratah 1.7.82.1: #i1858# implement typename where they are needed
Diffstat (limited to 'forms/source/component/GroupManager.hxx')
-rw-r--r--forms/source/component/GroupManager.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/forms/source/component/GroupManager.hxx b/forms/source/component/GroupManager.hxx
index 0a8bbe7fa04c..6b27cb0f1174 100644
--- a/forms/source/component/GroupManager.hxx
+++ b/forms/source/component/GroupManager.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: GroupManager.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: hr $ $Date: 2003-03-25 18:01:17 $
+ * last change: $Author: hr $ $Date: 2004-02-04 12:34:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -128,7 +128,7 @@ namespace frm
template <class ELEMENT, class LESS_COMPARE>
sal_Int32 insert_sorted(::std::vector<ELEMENT>& _rArray, const ELEMENT& _rNewElement, const LESS_COMPARE& _rCompareOp)
{
- ::std::vector<ELEMENT>::iterator aInsertPos = lower_bound(
+ typename ::std::vector<ELEMENT>::iterator aInsertPos = lower_bound(
_rArray.begin(),
_rArray.end(),
_rNewElement,
@@ -141,7 +141,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)
{
- ::std::vector<ELEMENT>::const_iterator aExistentPos = ::std::lower_bound(
+ typename ::std::vector<ELEMENT>::const_iterator aExistentPos = ::std::lower_bound(
_rArray.begin(),
_rArray.end(),
_rNewElement,