summaryrefslogtreecommitdiffstats
path: root/unotools/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-11-21 23:22:27 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-11-22 12:46:43 +0000
commit3679b7651737eba53c3779126246e4f0292570eb (patch)
treec5dd9e2ecc9d592414e05e5ea4564125b5da84c3 /unotools/inc
parentByteString->rtl::OString (diff)
downloadcore-3679b7651737eba53c3779126246e4f0292570eb.tar.gz
core-3679b7651737eba53c3779126246e4f0292570eb.zip
callcatcher: remove various unused MultiAtomProvider methods
Diffstat (limited to 'unotools/inc')
-rw-r--r--unotools/inc/unotools/atom.hxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/unotools/inc/unotools/atom.hxx b/unotools/inc/unotools/atom.hxx
index 6ad53ea7a439..40f707ca6746 100644
--- a/unotools/inc/unotools/atom.hxx
+++ b/unotools/inc/unotools/atom.hxx
@@ -57,12 +57,9 @@ namespace utl {
~AtomProvider();
int getAtom( const ::rtl::OUString&, sal_Bool bCreate = sal_False );
- int getLastAtom() const { return m_nAtoms-1; }
const ::rtl::OUString& getString( int ) const;
void overrideAtom( int atom, const ::rtl::OUString& description );
-
- sal_Bool hasAtom( int atom ) const;
};
@@ -73,10 +70,6 @@ namespace utl {
MultiAtomProvider();
~MultiAtomProvider();
- int getLastAtom( int atomClass ) const;
-
- sal_Bool insertAtomClass( int atomClass );
-
int getAtom( int atomClass, const ::rtl::OUString& rString, sal_Bool bCreate = sal_False );
const ::rtl::OUString& getString( int atomClass, int atom ) const;
@@ -84,7 +77,6 @@ namespace utl {
void overrideAtom( int atomClass, int atom, const ::rtl::OUString& description );
void overrideAtom( int atomClass, const ::com::sun::star::util::AtomDescription& newDescription )
{ overrideAtom( atomClass, newDescription.atom, newDescription.description ); }
- sal_Bool hasAtom( int atomClass, int atom ) const;
};
}