diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-07-30 14:21:18 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-07-30 14:21:18 +0000 |
commit | 69181c42e1ee91e6392a2ff2f872c3e88e83b234 (patch) | |
tree | dadb5625ae63f8d1256267f067d7d7d0266d6416 /autodoc/source/ary/inc | |
parent | baa553ce14c7171ef4bb270d09bee9706ebd0607 (diff) |
INTEGRATION: CWS gcc340fixes01 (1.2.82); FILE MERGED
2004/06/04 15:14:20 fa 1.2.82.1: #i28928# gcc 3.4 fixes (must use explicit scoping)
Diffstat (limited to 'autodoc/source/ary/inc')
-rw-r--r-- | autodoc/source/ary/inc/nametreenode.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/autodoc/source/ary/inc/nametreenode.hxx b/autodoc/source/ary/inc/nametreenode.hxx index 2d954dc2bfda..9d593e94ea46 100644 --- a/autodoc/source/ary/inc/nametreenode.hxx +++ b/autodoc/source/ary/inc/nametreenode.hxx @@ -2,9 +2,9 @@ * * $RCSfile: nametreenode.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2004-07-12 15:20:23 $ + * last change: $Author: kz $ $Date: 2004-07-30 15:21:18 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -187,7 +187,7 @@ inline void NameTreeNode<ITEM_ID>::Add_Name( const String & i_sName, item_id i_nId ) { - LocalNames().insert( Map_LocalNames::value_type(i_sName, i_nId) ); + LocalNames().insert( typename Map_LocalNames::value_type(i_sName, i_nId) ); } |