summaryrefslogtreecommitdiffstats
path: root/kaddressbook/filterselectionwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kaddressbook/filterselectionwidget.cpp')
-rw-r--r--kaddressbook/filterselectionwidget.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kaddressbook/filterselectionwidget.cpp b/kaddressbook/filterselectionwidget.cpp
index ddd4fa2f..c963024d 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 <qlabel.h>
+#include <tqlabel.h>
#include <kcombobox.h>
#include <kdialog.h>
@@ -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 );