summaryrefslogtreecommitdiffstats
path: root/kbarcode/batchwizard.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-20 16:13:16 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-20 16:13:16 -0600
commitdeb8e90cbe9a32f5d9aa121087b6fad3879a35b3 (patch)
tree8353a1696fc1777c07947a580b3b41be7b4ece03 /kbarcode/batchwizard.cpp
parentf5628f48e5a5f813742f5912d3547913e4978656 (diff)
downloadkbarcode-deb8e90cbe9a32f5d9aa121087b6fad3879a35b3.tar.gz
kbarcode-deb8e90cbe9a32f5d9aa121087b6fad3879a35b3.zip
Rename KABC namespace
Diffstat (limited to 'kbarcode/batchwizard.cpp')
-rw-r--r--kbarcode/batchwizard.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kbarcode/batchwizard.cpp b/kbarcode/batchwizard.cpp
index ac83c55..27b30cd 100644
--- a/kbarcode/batchwizard.cpp
+++ b/kbarcode/batchwizard.cpp
@@ -68,7 +68,7 @@
class AddressListViewItem : public TDEListViewItem {
public:
- AddressListViewItem(TQListView *parent, KABC::Addressee & addr )
+ AddressListViewItem(TQListView *parent, TDEABC::Addressee & addr )
: TDEListViewItem( parent ), m_address( addr )
{
this->setText( 0, m_address.givenName() );
@@ -76,12 +76,12 @@ public:
this->setText( 2, m_address.preferredEmail() );
}
- const KABC::Addressee & address() const {
+ const TDEABC::Addressee & address() const {
return m_address;
}
private:
- KABC::Addressee m_address;
+ TDEABC::Addressee m_address;
};
@@ -699,7 +699,7 @@ void BatchWizard::setupBatchPrinter( BatchPrinter* batch, int m )
}
else if( radioAddressBook->isChecked() )
{
- KABC::AddresseeList* list = new KABC::AddresseeList;
+ TDEABC::AddresseeList* list = new TDEABC::AddresseeList;
TQListViewItem* item = listSelectedAddress->firstChild();
while( item )
{
@@ -1026,10 +1026,10 @@ void BatchWizard::fillVarList()
void BatchWizard::fillAddressList()
{
- KABC::AddressBook* ab = KABC::StdAddressBook::self();
+ TDEABC::AddressBook* ab = TDEABC::StdAddressBook::self();
listAddress->clear();
- KABC::AddressBook::Iterator it;
+ TDEABC::AddressBook::Iterator it;
listAddress->setUpdatesEnabled( false );
for ( it = ab->begin(); it != ab->end(); ++it )
new AddressListViewItem( listAddress, *it );