diff options
Diffstat (limited to 'kaddressbook/secrecywidget.cpp')
-rw-r--r-- | kaddressbook/secrecywidget.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kaddressbook/secrecywidget.cpp b/kaddressbook/secrecywidget.cpp index 70b3bf3c8..5a39ddfa7 100644 --- a/kaddressbook/secrecywidget.cpp +++ b/kaddressbook/secrecywidget.cpp @@ -21,7 +21,7 @@ without including the source code for Qt in the source distribution. */ -#include <qlayout.h> +#include <tqlayout.h> #include <kabc/secrecy.h> #include <kcombobox.h> @@ -29,10 +29,10 @@ #include "secrecywidget.h" -SecrecyWidget::SecrecyWidget( QWidget *parent, const char *name ) - : QWidget( parent, name ) +SecrecyWidget::SecrecyWidget( TQWidget *parent, const char *name ) + : TQWidget( parent, name ) { - QVBoxLayout *layout = new QVBoxLayout( this, KDialog::marginHint(), + TQVBoxLayout *layout = new TQVBoxLayout( this, KDialog::marginHint(), KDialog::spacingHint() ); mSecrecyCombo = new KComboBox( this ); layout->addWidget( mSecrecyCombo ); @@ -42,8 +42,8 @@ SecrecyWidget::SecrecyWidget( QWidget *parent, const char *name ) for ( it = list.begin(); it != list.end(); ++it ) mSecrecyCombo->insertItem( KABC::Secrecy::typeLabel( *it ), *it ); - connect( mSecrecyCombo, SIGNAL( activated( const QString& ) ), - SIGNAL( changed() ) ); + connect( mSecrecyCombo, TQT_SIGNAL( activated( const TQString& ) ), + TQT_SIGNAL( changed() ) ); } SecrecyWidget::~SecrecyWidget() |