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 /kaddressbook/printing/printingwizard.cpp | |
parent | 41b65d69967ad0d35f8b4dd37ac63aad1cebdae9 (diff) | |
download | tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.tar.gz tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.zip |
Rename KABC namespace
Diffstat (limited to 'kaddressbook/printing/printingwizard.cpp')
-rw-r--r-- | kaddressbook/printing/printingwizard.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kaddressbook/printing/printingwizard.cpp b/kaddressbook/printing/printingwizard.cpp index 9ee8fe4a6..eecf434c3 100644 --- a/kaddressbook/printing/printingwizard.cpp +++ b/kaddressbook/printing/printingwizard.cpp @@ -52,7 +52,7 @@ using namespace KABPrinting; -PrintingWizard::PrintingWizard( KPrinter *printer, KABC::AddressBook* ab, +PrintingWizard::PrintingWizard( KPrinter *printer, TDEABC::AddressBook* ab, const TQStringList& selection, TQWidget *parent, const char* name ) : KWizard( parent, name ), mPrinter( printer ), mAddressBook( ab ), @@ -137,7 +137,7 @@ void PrintingWizard::slotStyleSelected( int index ) } } -KABC::AddressBook* PrintingWizard::addressBook() +TDEABC::AddressBook* PrintingWizard::addressBook() { return mAddressBook; } @@ -157,12 +157,12 @@ void PrintingWizard::print() // prepare list of contacts to print: - KABC::AddresseeList list; + TDEABC::AddresseeList list; if ( mStyle != 0 ) { if ( mSelectionPage->useSelection() ) { TQStringList::ConstIterator it; for ( it = mSelection.begin(); it != mSelection.end(); ++it ) { - KABC::Addressee addr = addressBook()->findByUid( *it ); + TDEABC::Addressee addr = addressBook()->findByUid( *it ); if ( !addr.isEmpty() ) list.append( addr ); } @@ -173,7 +173,7 @@ void PrintingWizard::print() if ( (*filterIt).name() == mSelectionPage->filter() ) break; - KABC::AddressBook::ConstIterator it; + TDEABC::AddressBook::ConstIterator it; for ( it = addressBook()->begin(); it != addressBook()->end(); ++it ) { if ( (*filterIt).filterAddressee( *it ) ) list.append( *it ); @@ -181,7 +181,7 @@ void PrintingWizard::print() } else if ( mSelectionPage->useCategories() ) { TQStringList categories = mSelectionPage->categories(); - KABC::AddressBook::ConstIterator it; + TDEABC::AddressBook::ConstIterator it; for ( it = addressBook()->begin(); it != addressBook()->end(); ++it ) { const TQStringList tmp( (*it).categories() ); TQStringList::ConstIterator tmpIt; @@ -193,7 +193,7 @@ void PrintingWizard::print() } } else { // create a string list of all entries: - KABC::AddressBook::ConstIterator it; + TDEABC::AddressBook::ConstIterator it; for ( it = addressBook()->begin(); it != addressBook()->end(); ++it ) list.append( *it ); } |