diff options
Diffstat (limited to 'kaddressbook/viewconfigurefilterpage.cpp')
-rw-r--r-- | kaddressbook/viewconfigurefilterpage.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/kaddressbook/viewconfigurefilterpage.cpp b/kaddressbook/viewconfigurefilterpage.cpp index 2db6e4923..7a07b050b 100644 --- a/kaddressbook/viewconfigurefilterpage.cpp +++ b/kaddressbook/viewconfigurefilterpage.cpp @@ -21,10 +21,10 @@ without including the source code for Qt in the source distribution. */ -#include <qbuttongroup.h> -#include <qlabel.h> -#include <qlayout.h> -#include <qradiobutton.h> +#include <tqbuttongroup.h> +#include <tqlabel.h> +#include <tqlayout.h> +#include <tqradiobutton.h> #include <kconfig.h> #include <kcombobox.h> @@ -34,37 +34,37 @@ #include "viewconfigurefilterpage.h" #include "filter.h" -ViewConfigureFilterPage::ViewConfigureFilterPage( QWidget *parent, +ViewConfigureFilterPage::ViewConfigureFilterPage( TQWidget *parent, const char *name ) - : QWidget( parent, name ) + : TQWidget( parent, name ) { - QBoxLayout *topLayout = new QVBoxLayout( this, 0, KDialog::spacingHint() ); + TQBoxLayout *topLayout = new TQVBoxLayout( this, 0, KDialog::spacingHint() ); - mFilterGroup = new QButtonGroup(); - connect( mFilterGroup, SIGNAL( clicked( int ) ), SLOT( buttonClicked( int ) ) ); + mFilterGroup = new TQButtonGroup(); + connect( mFilterGroup, TQT_SIGNAL( clicked( int ) ), TQT_SLOT( buttonClicked( int ) ) ); - QLabel *label = new QLabel( i18n( "The default filter will be activated whenever" + TQLabel *label = new TQLabel( i18n( "The default filter will be activated whenever" " this view is displayed. This feature allows you to configure views that only" " interact with certain types of information based on the filter. Once the view" " is activated, the filter can be changed at anytime." ), this ); label->setAlignment( Qt::AlignLeft | Qt::AlignTop | Qt::WordBreak ); topLayout->addWidget( label ); - QWidget *spacer = new QWidget( this ); + TQWidget *spacer = new TQWidget( this ); spacer->setMinimumHeight( 5 ); topLayout->addWidget( spacer ); - QRadioButton *button = new QRadioButton( i18n( "No default filter" ), this ); + TQRadioButton *button = new TQRadioButton( i18n( "No default filter" ), this ); mFilterGroup->insert( button ); topLayout->addWidget( button ); - button = new QRadioButton( i18n( "Use last active filter" ), this ); + button = new TQRadioButton( i18n( "Use last active filter" ), this ); mFilterGroup->insert( button ); topLayout->addWidget( button ); - QBoxLayout *comboLayout = new QHBoxLayout(); + TQBoxLayout *comboLayout = new TQHBoxLayout(); topLayout->addLayout( comboLayout ); - button = new QRadioButton( i18n( "Use filter:" ), this ); + button = new TQRadioButton( i18n( "Use filter:" ), this ); mFilterGroup->insert( button ); comboLayout->addWidget( button ); |