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/soundwidget.cpp | |
parent | 41b65d69967ad0d35f8b4dd37ac63aad1cebdae9 (diff) | |
download | tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.tar.gz tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.zip |
Rename KABC namespace
Diffstat (limited to 'kaddressbook/soundwidget.cpp')
-rw-r--r-- | kaddressbook/soundwidget.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kaddressbook/soundwidget.cpp b/kaddressbook/soundwidget.cpp index e26b3d3aa..dd10e2118 100644 --- a/kaddressbook/soundwidget.cpp +++ b/kaddressbook/soundwidget.cpp @@ -39,7 +39,7 @@ #include "soundwidget.h" -SoundWidget::SoundWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name ) +SoundWidget::SoundWidget( TDEABC::AddressBook *ab, TQWidget *parent, const char *name ) : KAB::ContactEditorWidget( ab, parent, name ), mReadOnly( false ) { TQGridLayout *topLayout = new TQGridLayout( this, 2, 3, KDialog::marginHint(), @@ -85,12 +85,12 @@ SoundWidget::~SoundWidget() { } -void SoundWidget::loadContact( KABC::Addressee *addr ) +void SoundWidget::loadContact( TDEABC::Addressee *addr ) { bool blocked = signalsBlocked(); blockSignals( true ); - KABC::Sound sound = addr->sound(); + TDEABC::Sound sound = addr->sound(); if ( sound.isIntern() ) { mSound.setData( sound.data() ); mPlayButton->setEnabled( true ); @@ -105,9 +105,9 @@ void SoundWidget::loadContact( KABC::Addressee *addr ) blockSignals( blocked ); } -void SoundWidget::storeContact( KABC::Addressee *addr ) +void SoundWidget::storeContact( TDEABC::Addressee *addr ) { - KABC::Sound sound; + TDEABC::Sound sound; if ( mUseSoundUrl->isChecked() ) sound.setUrl( mSoundUrl->url() ); |