diff options
Diffstat (limited to 'kaddressbook/soundwidget.h')
-rw-r--r-- | kaddressbook/soundwidget.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kaddressbook/soundwidget.h b/kaddressbook/soundwidget.h index b0ad168a7..7dd0e116a 100644 --- a/kaddressbook/soundwidget.h +++ b/kaddressbook/soundwidget.h @@ -38,7 +38,7 @@ class SoundWidget : public KAB::ContactEditorWidget Q_OBJECT public: - SoundWidget( KABC::AddressBook *ab, QWidget *parent, const char *name = 0 ); + SoundWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name = 0 ); ~SoundWidget(); void loadContact( KABC::Addressee *addr ); @@ -49,13 +49,13 @@ class SoundWidget : public KAB::ContactEditorWidget void playSound(); void loadSound(); void updateGUI(); - void urlChanged( const QString& ); + void urlChanged( const TQString& ); private: KURLRequester *mSoundUrl; - QCheckBox *mUseSoundUrl; - QPushButton *mPlayButton; + TQCheckBox *mUseSoundUrl; + TQPushButton *mPlayButton; KABC::Sound mSound; bool mReadOnly; @@ -64,12 +64,12 @@ class SoundWidget : public KAB::ContactEditorWidget class SoundWidgetFactory : public KAB::ContactEditorWidgetFactory { public: - KAB::ContactEditorWidget *createWidget( KABC::AddressBook *ab, QWidget *parent, const char *name ) + KAB::ContactEditorWidget *createWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name ) { return new SoundWidget( ab, parent, name ); } - QString pageIdentifier() const { return "misc"; } + TQString pageIdentifier() const { return "misc"; } }; #endif |