diff options
Diffstat (limited to 'kbugbuster/gui/loadallbugsdlg.cpp')
-rw-r--r-- | kbugbuster/gui/loadallbugsdlg.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kbugbuster/gui/loadallbugsdlg.cpp b/kbugbuster/gui/loadallbugsdlg.cpp index 40ecd6d8..d6203c07 100644 --- a/kbugbuster/gui/loadallbugsdlg.cpp +++ b/kbugbuster/gui/loadallbugsdlg.cpp @@ -18,28 +18,28 @@ #include "bugcache.h" #include <kdebug.h> #include <kio/defaultprogress.h> -#include <qtimer.h> +#include <tqtimer.h> -LoadAllBugsDlg::LoadAllBugsDlg( const Package& pkg, const QString &component ) - : QDialog( 0L, "progressdlg", TRUE ) +LoadAllBugsDlg::LoadAllBugsDlg( const Package& pkg, const TQString &component ) + : TQDialog( 0L, "progressdlg", TRUE ) { m_bugLoadingProgress = new KIO::DefaultProgress( this ); - connect( m_bugLoadingProgress, SIGNAL( stopped() ), - this, SLOT( slotStopped() ) ); + connect( m_bugLoadingProgress, TQT_SIGNAL( stopped() ), + this, TQT_SLOT( slotStopped() ) ); setCaption( i18n( "Loading All Bugs for Product %1" ).arg( pkg.name() ) ); connect( BugSystem::self(), - SIGNAL( bugDetailsAvailable( const Bug &, const BugDetails & ) ), - SLOT( slotBugDetailsAvailable( const Bug &, const BugDetails & ) ) ); + TQT_SIGNAL( bugDetailsAvailable( const Bug &, const BugDetails & ) ), + TQT_SLOT( slotBugDetailsAvailable( const Bug &, const BugDetails & ) ) ); connect( BugSystem::self(), - SIGNAL( bugDetailsLoadingError() ), - SLOT( slotBugDetailsLoadingError() ) ); + TQT_SIGNAL( bugDetailsLoadingError() ), + TQT_SLOT( slotBugDetailsLoadingError() ) ); // The package (and its buglist) has to be in the cache already... m_bugs = BugSystem::self()->cache()->loadBugList( pkg, component, true ); m_count = m_bugs.count(); m_bugLoadingProgress->slotTotalSize( 0, m_count ); kdDebug() << "LoadAllBugsDlg: " << m_count << " bugs to load" << endl; m_processed = 0; - QTimer::singleShot( 0, this, SLOT( loadNextBug() ) ); + TQTimer::singleShot( 0, this, TQT_SLOT( loadNextBug() ) ); } void LoadAllBugsDlg::slotBugDetailsAvailable( const Bug &bug, const BugDetails & ) |