diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-20 16:27:27 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-20 16:27:27 -0600 |
commit | 94273bcb909fac42ef9427e3d8a614cab8c29c66 (patch) | |
tree | 91b99186971ecb475db3ca41b1b12df24029e389 /kmail/recipientspicker.h | |
parent | 41b65d69967ad0d35f8b4dd37ac63aad1cebdae9 (diff) | |
download | tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.tar.gz tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.zip |
Rename KABC namespace
Diffstat (limited to 'kmail/recipientspicker.h')
-rw-r--r-- | kmail/recipientspicker.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kmail/recipientspicker.h b/kmail/recipientspicker.h index 38d36a980..d9dc22930 100644 --- a/kmail/recipientspicker.h +++ b/kmail/recipientspicker.h @@ -39,7 +39,7 @@ class TQComboBox; #ifdef TDEPIM_NEW_DISTRLISTS #include <libtdepim/distributionlist.h> #else -namespace KABC { +namespace TDEABC { class DistributionList; class DistributionListManager; } @@ -55,15 +55,15 @@ class RecipientItem typedef TQValueList<RecipientItem *> List; #ifdef TDEPIM_NEW_DISTRLISTS - RecipientItem( KABC::AddressBook *ab ); + RecipientItem( TDEABC::AddressBook *ab ); void setDistributionList( KPIM::DistributionList& ); KPIM::DistributionList& distributionList(); #else RecipientItem(); - void setDistributionList( KABC::DistributionList * ); - KABC::DistributionList * distributionList(); + void setDistributionList( TDEABC::DistributionList * ); + TDEABC::DistributionList * distributionList(); #endif - void setAddressee( const KABC::Addressee &, const TQString &email ); + void setAddressee( const TDEABC::Addressee &, const TQString &email ); void setRecipientType( const TQString &type ); TQString recipientType() const; @@ -82,18 +82,18 @@ class RecipientItem #ifdef TDEPIM_NEW_DISTRLISTS TQString createTooltip( KPIM::DistributionList & ) const; #else - TQString createTooltip( KABC::DistributionList * ) const; + TQString createTooltip( TDEABC::DistributionList * ) const; #endif - KABC::Addressee mAddressee; + TDEABC::Addressee mAddressee; TQString mName; TQString mEmail; TQString mRecipient; #ifdef TDEPIM_NEW_DISTRLISTS KPIM::DistributionList mDistributionList; - KABC::AddressBook *mAddressBook; + TDEABC::AddressBook *mAddressBook; #else - KABC::DistributionList *mDistributionList; + TDEABC::DistributionList *mDistributionList; #endif TQString mType; TQString mTooltip; @@ -174,7 +174,7 @@ class SearchLine : public TDEListViewSearchLine void keyPressEvent( TQKeyEvent * ); }; -using namespace KABC; +using namespace TDEABC; class RecipientsPicker : public TQDialog { @@ -222,7 +222,7 @@ class RecipientsPicker : public TQDialog void slotSearchLDAP(); void ldapSearchResult(); private: - KABC::StdAddressBook *mAddressBook; + TDEABC::StdAddressBook *mAddressBook; TQComboBox *mCollectionCombo; TDEListView *mRecipientList; @@ -241,7 +241,7 @@ class RecipientsPicker : public TQDialog RecipientsCollection *mSelectedRecipients; #ifndef TDEPIM_NEW_DISTRLISTS - KABC::DistributionListManager *mDistributionListManager; + TDEABC::DistributionListManager *mDistributionListManager; #endif Recipient::Type mDefaultType; |