From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kaddressbook/filterselectionwidget.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'kaddressbook/filterselectionwidget.cpp') diff --git a/kaddressbook/filterselectionwidget.cpp b/kaddressbook/filterselectionwidget.cpp index ddd4fa2f2..c963024d0 100644 --- a/kaddressbook/filterselectionwidget.cpp +++ b/kaddressbook/filterselectionwidget.cpp @@ -21,7 +21,7 @@ without including the source code for Qt in the source distribution. */ -#include +#include #include #include @@ -29,17 +29,17 @@ #include "filterselectionwidget.h" -FilterSelectionWidget::FilterSelectionWidget( QWidget *parent, const char *name ) - : QHBox( parent, name ) +FilterSelectionWidget::FilterSelectionWidget( TQWidget *parent, const char *name ) + : TQHBox( parent, name ) { setSpacing( KDialog::spacingHint() ); - QLabel *label = new QLabel( i18n( "Filter:" ), this, "kde toolbar widget" ); + TQLabel *label = new TQLabel( i18n( "Filter:" ), this, "kde toolbar widget" ); mFilterCombo = new KComboBox( this ); label->setBuddy( mFilterCombo ); - connect( mFilterCombo, SIGNAL( activated( int ) ), - this, SIGNAL( filterActivated( int ) ) ); + connect( mFilterCombo, TQT_SIGNAL( activated( int ) ), + this, TQT_SIGNAL( filterActivated( int ) ) ); } FilterSelectionWidget::~FilterSelectionWidget() @@ -56,7 +56,7 @@ void FilterSelectionWidget::setCurrentItem( int index ) mFilterCombo->setCurrentItem( index ); } -void FilterSelectionWidget::setItems( const QStringList &names ) +void FilterSelectionWidget::setItems( const TQStringList &names ) { mFilterCombo->clear(); mFilterCombo->insertStringList( names ); -- cgit v1.2.1