diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-07-30 14:05:02 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-07-30 14:05:02 +0000 |
commit | 1c92523766802cd8366e1b922bff1c56c0654dda (patch) | |
tree | da22957fbfe0099ff85354bd69de1fb48f566ffd /forms | |
parent | d9bfd7e2955db0bcdccfea2e0f680195bd84e1c0 (diff) |
INTEGRATION: CWS gcc340fixes01 (1.8.38); FILE MERGED
2004/07/16 12:37:49 cmc 1.8.38.1: #i31586# trivial namespace mod for gcc34
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/GroupManager.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/component/GroupManager.hxx b/forms/source/component/GroupManager.hxx index 6b27cb0f1174..8a98d3ed2ac8 100644 --- a/forms/source/component/GroupManager.hxx +++ b/forms/source/component/GroupManager.hxx @@ -2,9 +2,9 @@ * * $RCSfile: GroupManager.hxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: hr $ $Date: 2004-02-04 12:34:57 $ + * last change: $Author: kz $ $Date: 2004-07-30 15:05:02 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -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) { - typename ::std::vector<ELEMENT>::const_iterator aExistentPos = ::std::lower_bound( + typename ::std::vector<ELEMENT>::const_iterator aExistentPos = lower_bound( _rArray.begin(), _rArray.end(), _rNewElement, |