diff options
author | Philipp Lohmann <pl@openoffice.org> | 2000-11-15 10:38:14 +0000 |
---|---|---|
committer | Philipp Lohmann <pl@openoffice.org> | 2000-11-15 10:38:14 +0000 |
commit | 15f89a1af2b1d6f75a6ba5f9d69e05a150ad6755 (patch) | |
tree | c76b70ae5749783c84b85f8b990840737e6560bb /unotools | |
parent | 17ec1aaa04db5c85bf05e7d83ee8ae8950d2835a (diff) |
OUStringHash moved to namespace rtl
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/inc/unotools/atom.hxx | 6 | ||||
-rw-r--r-- | unotools/source/misc/atom.cxx | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/unotools/inc/unotools/atom.hxx b/unotools/inc/unotools/atom.hxx index 223de786ab7c..881d700302bd 100644 --- a/unotools/inc/unotools/atom.hxx +++ b/unotools/inc/unotools/atom.hxx @@ -2,9 +2,9 @@ * * $RCSfile: atom.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: pl $ $Date: 2000-11-14 11:23:12 $ + * last change: $Author: pl $ $Date: 2000-11-15 11:38:13 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -97,7 +97,7 @@ namespace utl { { int m_nAtoms; ::std::hash_map< int, ::rtl::OUString, ::std::hash< int > > m_aStringMap; - ::std::hash_map< ::rtl::OUString, int, OUStringHash > m_aAtomMap; + ::std::hash_map< ::rtl::OUString, int, ::rtl::OUStringHash > m_aAtomMap; public: AtomProvider(); ~AtomProvider(); diff --git a/unotools/source/misc/atom.cxx b/unotools/source/misc/atom.cxx index e4fa26396659..d0d68daffee3 100644 --- a/unotools/source/misc/atom.cxx +++ b/unotools/source/misc/atom.cxx @@ -2,9 +2,9 @@ * * $RCSfile: atom.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: pl $ $Date: 2000-11-14 11:23:12 $ + * last change: $Author: pl $ $Date: 2000-11-15 11:38:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -77,7 +77,7 @@ AtomProvider::~AtomProvider() int AtomProvider::getAtom( const ::rtl::OUString& rString, sal_Bool bCreate ) { - ::std::hash_map< ::rtl::OUString, int, OUStringHash >::iterator it = m_aAtomMap.find( rString ); + ::std::hash_map< ::rtl::OUString, int, ::rtl::OUStringHash >::iterator it = m_aAtomMap.find( rString ); if( it != m_aAtomMap.end() ) return it->second; if( ! bCreate ) @@ -91,7 +91,7 @@ int AtomProvider::getAtom( const ::rtl::OUString& rString, sal_Bool bCreate ) void AtomProvider::getAll( ::std::list< ::utl::AtomDescription >& atoms ) { atoms.clear(); - ::std::hash_map< ::rtl::OUString, int, OUStringHash >::const_iterator it = m_aAtomMap.begin(); + ::std::hash_map< ::rtl::OUString, int, ::rtl::OUStringHash >::const_iterator it = m_aAtomMap.begin(); ::utl::AtomDescription aDesc; while( it != m_aAtomMap.end() ) @@ -107,7 +107,7 @@ void AtomProvider::getRecent( int atom, ::std::list< ::utl::AtomDescription >& a { atoms.clear(); - ::std::hash_map< ::rtl::OUString, int, OUStringHash >::const_iterator it = m_aAtomMap.begin(); + ::std::hash_map< ::rtl::OUString, int, ::rtl::OUStringHash >::const_iterator it = m_aAtomMap.begin(); ::utl::AtomDescription aDesc; while( it != m_aAtomMap.end() ) |