summaryrefslogtreecommitdiffstats
path: root/kaddressbook/filterselectionwidget.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kaddressbook/filterselectionwidget.cpp
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 );