summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-09-28 09:08:00 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-09-28 09:20:33 +0100
commit0be6fb77a7b749d7bb726311f68d4113b4eccb88 (patch)
tree28df1acab93c16075c383725e6b0b5ee689cd8a5 /unotools
parent820a569b8d119ae5a62ceb3f4fab027792902f35 (diff)
callcatcher: another round
Diffstat (limited to 'unotools')
-rw-r--r--unotools/inc/unotools/atom.hxx3
-rw-r--r--unotools/source/misc/atom.cxx20
2 files changed, 0 insertions, 23 deletions
diff --git a/unotools/inc/unotools/atom.hxx b/unotools/inc/unotools/atom.hxx
index a144955a6e31..5bccb227e2cd 100644
--- a/unotools/inc/unotools/atom.hxx
+++ b/unotools/inc/unotools/atom.hxx
@@ -83,10 +83,7 @@ namespace utl {
int getAtom( int atomClass, const ::rtl::OUString& rString, sal_Bool bCreate = sal_False );
- void getRecent( int atomClass, int atom, ::std::list< AtomDescription >& atoms );
-
const ::rtl::OUString& getString( int atomClass, int atom ) const;
- void getClass( int atomClass, ::std::list< AtomDescription >& atoms ) const;
void overrideAtom( int atomClass, int atom, const ::rtl::OUString& description );
void overrideAtom( int atomClass, const ::com::sun::star::util::AtomDescription& newDescription )
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 );