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/customfieldswidget.cpp | |
parent | 41b65d69967ad0d35f8b4dd37ac63aad1cebdae9 (diff) | |
download | tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.tar.gz tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.zip |
Rename KABC namespace
Diffstat (limited to 'kaddressbook/customfieldswidget.cpp')
-rw-r--r-- | kaddressbook/customfieldswidget.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kaddressbook/customfieldswidget.cpp b/kaddressbook/customfieldswidget.cpp index 788b43915..b267eddc9 100644 --- a/kaddressbook/customfieldswidget.cpp +++ b/kaddressbook/customfieldswidget.cpp @@ -249,7 +249,7 @@ void FieldWidget::clearFields() } } -void FieldWidget::loadContact( KABC::Addressee *addr ) +void FieldWidget::loadContact( TDEABC::Addressee *addr ) { const TQStringList customs = addr->customs(); @@ -316,7 +316,7 @@ void FieldWidget::setReadOnly( bool readOnly ) } } -void FieldWidget::storeContact( KABC::Addressee *addr ) +void FieldWidget::storeContact( TDEABC::Addressee *addr ) { FieldRecordList::ConstIterator it; for ( it = mFieldList.begin(); it != mFieldList.end(); ++it ) { @@ -376,7 +376,7 @@ void FieldWidget::recalculateLayout() (*it).mLabel->setMinimumWidth( maxWidth ); } -CustomFieldsWidget::CustomFieldsWidget( KABC::AddressBook *ab, +CustomFieldsWidget::CustomFieldsWidget( TDEABC::AddressBook *ab, TQWidget *parent, const char *name ) : KAB::ContactEditorWidget( ab, parent, name ) { @@ -388,7 +388,7 @@ CustomFieldsWidget::CustomFieldsWidget( KABC::AddressBook *ab, connect( mFieldWidget, TQT_SIGNAL( changed() ), this, TQT_SLOT( setModified() ) ); } -void CustomFieldsWidget::loadContact( KABC::Addressee *addr ) +void CustomFieldsWidget::loadContact( TDEABC::Addressee *addr ) { mAddressee = *addr; @@ -408,7 +408,7 @@ void CustomFieldsWidget::loadContact( KABC::Addressee *addr ) mFieldWidget->loadContact( addr ); } -void CustomFieldsWidget::storeContact( KABC::Addressee *addr ) +void CustomFieldsWidget::storeContact( TDEABC::Addressee *addr ) { mFieldWidget->storeContact( addr ); } |