diff options
Diffstat (limited to 'kaddressbook/editors/cryptowidget.h')
-rw-r--r-- | kaddressbook/editors/cryptowidget.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/kaddressbook/editors/cryptowidget.h b/kaddressbook/editors/cryptowidget.h index 8037a4a49..12f3ba992 100644 --- a/kaddressbook/editors/cryptowidget.h +++ b/kaddressbook/editors/cryptowidget.h @@ -17,8 +17,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + with any edition of TQt, and distribute the resulting executable, + without including the source code for TQt in the source distribution. */ #ifndef CRYPTOWIDGET_H @@ -36,9 +36,10 @@ class TQCheckBox; class CryptoWidget : public KAB::ContactEditorWidget { Q_OBJECT + TQ_OBJECT public: - CryptoWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name = 0 ); + CryptoWidget( KABC::AddressBook *ab, TQWidget *tqparent, const char *name = 0 ); ~CryptoWidget(); void loadContact( KABC::Addressee *addr ); @@ -59,9 +60,9 @@ class CryptoWidgetFactory : public KAB::ContactEditorWidgetFactory { public: CryptoWidgetFactory(); - KAB::ContactEditorWidget *createWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name ) + KAB::ContactEditorWidget *createWidget( KABC::AddressBook *ab, TQWidget *tqparent, const char *name ) { - return new CryptoWidget( ab, parent, name ); + return new CryptoWidget( ab, tqparent, name ); } TQString pageTitle() const; |