diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-09-28 09:08:00 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-09-28 09:20:33 +0100 |
commit | 0be6fb77a7b749d7bb726311f68d4113b4eccb88 (patch) | |
tree | 28df1acab93c16075c383725e6b0b5ee689cd8a5 /unotools/source | |
parent | 820a569b8d119ae5a62ceb3f4fab027792902f35 (diff) |
callcatcher: another round
Diffstat (limited to 'unotools/source')
-rw-r--r-- | unotools/source/misc/atom.cxx | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/unotools/source/misc/atom.cxx b/unotools/source/misc/atom.cxx index df422ba4b8ff..ade01ae2ee5c 100644 --- a/unotools/source/misc/atom.cxx +++ b/unotools/source/misc/atom.cxx @@ -160,16 +160,6 @@ int MultiAtomProvider::getLastAtom( int atomClass ) const return it != m_aAtomLists.end() ? it->second->getLastAtom() : INVALID_ATOM; } -void MultiAtomProvider::getRecent( int atomClass, int atom, ::std::list< ::utl::AtomDescription >& atoms ) -{ - ::boost::unordered_map< int, AtomProvider*, ::boost::hash< int > >::const_iterator it = - m_aAtomLists.find( atomClass ); - if( it != m_aAtomLists.end() ) - it->second->getRecent( atom, atoms ); - else - atoms.clear(); -} - const ::rtl::OUString& MultiAtomProvider::getString( int atomClass, int atom ) const { ::boost::unordered_map< int, AtomProvider*, ::boost::hash< int > >::const_iterator it = @@ -187,16 +177,6 @@ sal_Bool MultiAtomProvider::hasAtom( int atomClass, int atom ) const return it != m_aAtomLists.end() ? it->second->hasAtom( atom ) : sal_False; } -void MultiAtomProvider::getClass( int atomClass, ::std::list< ::utl::AtomDescription >& atoms) const -{ - ::boost::unordered_map< int, AtomProvider*, ::boost::hash< int > >::const_iterator it = m_aAtomLists.find( atomClass ); - - if( it != m_aAtomLists.end() ) - it->second->getAll( atoms ); - else - atoms.clear(); -} - void MultiAtomProvider::overrideAtom( int atomClass, int atom, const ::rtl::OUString& description ) { ::boost::unordered_map< int, AtomProvider*, ::boost::hash< int > >::const_iterator it = m_aAtomLists.find( atomClass ); |