summaryrefslogtreecommitdiffstats
path: root/adept/libadept/installerview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'adept/libadept/installerview.cpp')
-rw-r--r--adept/libadept/installerview.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/adept/libadept/installerview.cpp b/adept/libadept/installerview.cpp
index eac9dc7..ef9eae3 100644
--- a/adept/libadept/installerview.cpp
+++ b/adept/libadept/installerview.cpp
@@ -1,7 +1,7 @@
-#include <qlineedit.h>
-#include <qcombobox.h>
-#include <qtextbrowser.h>
-#include <qcheckbox.h>
+#include <tqlineedit.h>
+#include <tqcombobox.h>
+#include <tqtextbrowser.h>
+#include <tqcheckbox.h>
#include <klocale.h>
#include <apt-front/cache/entity/desktop.h>
@@ -19,7 +19,7 @@ void InstallerView::rebuild()
{
typedef predicate::Factory< entity::Desktop > Factory;
if ( m_inRebuild ) {
- QTimer::singleShot( 500, this, SLOT( rebuild() ) );
+ TQTimer::singleShot( 500, this, TQT_SLOT( rebuild() ) );
return;
}
m_inRebuild = true;
@@ -61,17 +61,17 @@ void InstallerView::rebuild()
m_inRebuild = false;
}
-InstallerView::InstallerView( QWidget *p , const char *n )
+InstallerView::InstallerView( TQWidget *p , const char *n )
: InstallerViewUi( p, n ), m_inRebuild( false )
{
- connect( m_search, SIGNAL( textChanged( const QString & ) ),
- this, SLOT( textChanged() ) );
- connect( &timer, SIGNAL( timeout() ), this, SLOT( rebuild() ) );
- connect( m_suite, SIGNAL( activated( int ) ), this, SLOT( rebuild() ) );
- connect( m_unsupported, SIGNAL( toggled( bool ) ), this, SLOT( rebuild() ) );
- connect( m_nonfree, SIGNAL( toggled( bool ) ), this, SLOT( rebuild() ) );
- connect( selector(), SIGNAL( showDescription( cache::entity::Desktop ) ),
- this, SLOT( showDescription( cache::entity::Desktop ) ) );
+ connect( m_search, TQT_SIGNAL( textChanged( const TQString & ) ),
+ this, TQT_SLOT( textChanged() ) );
+ connect( &timer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( rebuild() ) );
+ connect( m_suite, TQT_SIGNAL( activated( int ) ), this, TQT_SLOT( rebuild() ) );
+ connect( m_unsupported, TQT_SIGNAL( toggled( bool ) ), this, TQT_SLOT( rebuild() ) );
+ connect( m_nonfree, TQT_SIGNAL( toggled( bool ) ), this, TQT_SLOT( rebuild() ) );
+ connect( selector(), TQT_SIGNAL( showDescription( cache::entity::Desktop ) ),
+ this, TQT_SLOT( showDescription( cache::entity::Desktop ) ) );
}
void InstallerView::textChanged() {