diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:51:49 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:51:49 +0000 |
commit | 4ae0c208b66e0f7954e194384464fe2d0a2c56dd (patch) | |
tree | b0a7cd1c184f0003c0292eb416ed27f674f9cc43 /kbugbuster/gui/loadallbugsdlg.cpp | |
parent | 1964ea0fb4ab57493ca2ebb709c8d3b5395fd653 (diff) | |
download | tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.tar.gz tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1157652 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 & ) |