diff options
author | Timothy Pearson <[email protected]> | 2013-02-20 16:27:27 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-20 16:27:27 -0600 |
commit | 94273bcb909fac42ef9427e3d8a614cab8c29c66 (patch) | |
tree | 91b99186971ecb475db3ca41b1b12df24029e389 /libtdepim/addresseeemailselection.h | |
parent | 41b65d69967ad0d35f8b4dd37ac63aad1cebdae9 (diff) | |
download | tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.tar.gz tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.zip |
Rename KABC namespace
Diffstat (limited to 'libtdepim/addresseeemailselection.h')
-rw-r--r-- | libtdepim/addresseeemailselection.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/libtdepim/addresseeemailselection.h b/libtdepim/addresseeemailselection.h index 4ecb946e3..f4394a93f 100644 --- a/libtdepim/addresseeemailselection.h +++ b/libtdepim/addresseeemailselection.h @@ -44,52 +44,52 @@ class KDE_EXPORT AddresseeEmailSelection : public Selection /** Returns the number of items for the given addressee. */ - virtual uint itemCount( const KABC::Addressee &addresse ) const; + virtual uint itemCount( const TDEABC::Addressee &addresse ) const; /** Returns the text that's used for the item specified by index. */ - virtual TQString itemText( const KABC::Addressee &addresse, uint index ) const; + virtual TQString itemText( const TDEABC::Addressee &addresse, uint index ) const; /** Returns the icon that's used for the item specified by index. */ - virtual TQPixmap itemIcon( const KABC::Addressee &addresse, uint index ) const; + virtual TQPixmap itemIcon( const TDEABC::Addressee &addresse, uint index ) const; /** Returns whether the item specified by index is enabled. */ - virtual bool itemEnabled( const KABC::Addressee &addresse, uint index ) const; + virtual bool itemEnabled( const TDEABC::Addressee &addresse, uint index ) const; /** Returns whether the item specified by index matches the passed pattern. */ - virtual bool itemMatches( const KABC::Addressee &addresse, uint index, const TQString &pattern ) const; + virtual bool itemMatches( const TDEABC::Addressee &addresse, uint index, const TQString &pattern ) const; /** Returns whether the item specified by index equals the passed pattern. */ - virtual bool itemEquals( const KABC::Addressee &addresse, uint index, const TQString &pattern ) const; + virtual bool itemEquals( const TDEABC::Addressee &addresse, uint index, const TQString &pattern ) const; /** Returns the text that's used for the given distribution list. */ - virtual TQString distributionListText( const KABC::DistributionList *distributionList ) const; + virtual TQString distributionListText( const TDEABC::DistributionList *distributionList ) const; /** Returns the icon that's used for the given distribution list. */ - virtual TQPixmap distributionListIcon( const KABC::DistributionList *distributionList ) const; + virtual TQPixmap distributionListIcon( const TDEABC::DistributionList *distributionList ) const; /** Returns whether the given distribution list is enabled. */ - virtual bool distributionListEnabled( const KABC::DistributionList *distributionList ) const; + virtual bool distributionListEnabled( const TDEABC::DistributionList *distributionList ) const; /** Returns whether the given distribution list matches the passed pattern. */ - virtual bool distributionListMatches( const KABC::DistributionList *distributionList, + virtual bool distributionListMatches( const TDEABC::DistributionList *distributionList, const TQString &pattern ) const; /** @@ -105,15 +105,15 @@ class KDE_EXPORT AddresseeEmailSelection : public Selection /** Returns the content for an additional address book. */ - virtual KABC::Addressee::List addressBookContent( uint index ) const; + virtual TDEABC::Addressee::List addressBookContent( uint index ) const; TQStringList to() const; TQStringList cc() const; TQStringList bcc() const; - KABC::Addressee::List toAddresses() const; - KABC::Addressee::List ccAddresses() const; - KABC::Addressee::List bccAddresses() const; + TDEABC::Addressee::List toAddresses() const; + TDEABC::Addressee::List ccAddresses() const; + TDEABC::Addressee::List bccAddresses() const; TQStringList toDistributionLists() const; TQStringList ccDistributionLists() const; @@ -124,15 +124,15 @@ class KDE_EXPORT AddresseeEmailSelection : public Selection void setSelectedBCC( const TQStringList &emails ); private: - virtual void addSelectedAddressees( uint fieldIndex, const KABC::Addressee&, uint itemIndex ); - virtual void addSelectedDistributionList( uint fieldIndex, const KABC::DistributionList* ); + virtual void addSelectedAddressees( uint fieldIndex, const TDEABC::Addressee&, uint itemIndex ); + virtual void addSelectedDistributionList( uint fieldIndex, const TDEABC::DistributionList* ); - TQString email( const KABC::Addressee&, uint ) const; + TQString email( const TDEABC::Addressee&, uint ) const; void setSelectedItem( uint fieldIndex, const TQStringList& ); - KABC::Addressee::List mToAddresseeList; - KABC::Addressee::List mCcAddresseeList; - KABC::Addressee::List mBccAddresseeList; + TDEABC::Addressee::List mToAddresseeList; + TDEABC::Addressee::List mCcAddresseeList; + TDEABC::Addressee::List mBccAddresseeList; TQStringList mToEmailList; TQStringList mCcEmailList; |