summaryrefslogtreecommitdiffstats
path: root/kbugbuster/gui/loadallbugsdlg.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 13:10:18 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 13:34:26 +0900
commitb0c86264e0cd10a0d3a47de3b05be453d9417bcd (patch)
tree7ae4535306d69dc4b55f68eae0a65298330ee610 /kbugbuster/gui/loadallbugsdlg.cpp
parentd859a5c1f439fe432dedde763e40b2dad9875354 (diff)
downloadtdesdk-b0c86264e0cd10a0d3a47de3b05be453d9417bcd.tar.gz
tdesdk-b0c86264e0cd10a0d3a47de3b05be453d9417bcd.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 & )