summaryrefslogtreecommitdiffstats
path: root/kbugbuster/gui/loadallbugsdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbugbuster/gui/loadallbugsdlg.cpp')
-rw-r--r--kbugbuster/gui/loadallbugsdlg.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kbugbuster/gui/loadallbugsdlg.cpp b/kbugbuster/gui/loadallbugsdlg.cpp
index cea52ef1..fd9db670 100644
--- a/kbugbuster/gui/loadallbugsdlg.cpp
+++ b/kbugbuster/gui/loadallbugsdlg.cpp
@@ -24,22 +24,22 @@ LoadAllBugsDlg::LoadAllBugsDlg( const Package& pkg, const TQString &component )
: TQDialog( 0L, "progressdlg", TRUE )
{
m_bugLoadingProgress = new TDEIO::DefaultProgress( this );
- connect( m_bugLoadingProgress, TQT_SIGNAL( stopped() ),
- this, TQT_SLOT( slotStopped() ) );
+ connect( m_bugLoadingProgress, TQ_SIGNAL( stopped() ),
+ this, TQ_SLOT( slotStopped() ) );
setCaption( i18n( "Loading All Bugs for Product %1" ).arg( pkg.name() ) );
connect( BugSystem::self(),
- TQT_SIGNAL( bugDetailsAvailable( const Bug &, const BugDetails & ) ),
- TQT_SLOT( slotBugDetailsAvailable( const Bug &, const BugDetails & ) ) );
+ TQ_SIGNAL( bugDetailsAvailable( const Bug &, const BugDetails & ) ),
+ TQ_SLOT( slotBugDetailsAvailable( const Bug &, const BugDetails & ) ) );
connect( BugSystem::self(),
- TQT_SIGNAL( bugDetailsLoadingError() ),
- TQT_SLOT( slotBugDetailsLoadingError() ) );
+ TQ_SIGNAL( bugDetailsLoadingError() ),
+ TQ_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;
- TQTimer::singleShot( 0, this, TQT_SLOT( loadNextBug() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( loadNextBug() ) );
}
void LoadAllBugsDlg::slotBugDetailsAvailable( const Bug &bug, const BugDetails & )