diff options
Diffstat (limited to 'kbugbuster/gui/cwbuglistcontainer.cpp')
| -rw-r--r-- | kbugbuster/gui/cwbuglistcontainer.cpp | 44 | 
1 files changed, 22 insertions, 22 deletions
| diff --git a/kbugbuster/gui/cwbuglistcontainer.cpp b/kbugbuster/gui/cwbuglistcontainer.cpp index 2eeadee3..a4607581 100644 --- a/kbugbuster/gui/cwbuglistcontainer.cpp +++ b/kbugbuster/gui/cwbuglistcontainer.cpp @@ -79,35 +79,35 @@ CWBugListContainer::CWBugListContainer( TQWidget *parent , const char * name )      m_listBugs->restoreLayout( KBBPrefs::instance()->config(), "BugListLayout" ); -    connect( m_listBugs, TQT_SIGNAL( executed( TQListViewItem * ) ), -             TQT_SLOT( execute( TQListViewItem * ) ) ); -    connect( m_listBugs, TQT_SIGNAL( returnPressed( TQListViewItem * ) ), -             TQT_SLOT( execute( TQListViewItem * ) ) ); -    connect( m_listBugs, TQT_SIGNAL( currentChanged( TQListViewItem * ) ), -             TQT_SLOT( changeCurrent( TQListViewItem * ) ) ); +    connect( m_listBugs, TQ_SIGNAL( executed( TQListViewItem * ) ), +             TQ_SLOT( execute( TQListViewItem * ) ) ); +    connect( m_listBugs, TQ_SIGNAL( returnPressed( TQListViewItem * ) ), +             TQ_SLOT( execute( TQListViewItem * ) ) ); +    connect( m_listBugs, TQ_SIGNAL( currentChanged( TQListViewItem * ) ), +             TQ_SLOT( changeCurrent( TQListViewItem * ) ) );      // Fill WidgetStack in Outstanding Bugs pane      m_listLoading = new CWLoadingWidget( CWLoadingWidget::TopFrame,                                           m_listStack ); -    connect( m_listLoading, TQT_SIGNAL( clicked() ), TQT_SIGNAL( searchPackage() ) ); +    connect( m_listLoading, TQ_SIGNAL( clicked() ), TQ_SIGNAL( searchPackage() ) );      m_listStack->addWidget( m_listBugs, 0 );      m_listStack->addWidget( m_listLoading,  1 );      setNoList(); -    connect( BugSystem::self(), TQT_SIGNAL( bugListLoading( const Package &, const TQString & ) ), -             TQT_SLOT( setLoading( const Package &, const TQString & ) ) ); -    connect( BugSystem::self(), TQT_SIGNAL( bugListLoading( const TQString & ) ), -             TQT_SLOT( setLoading( const TQString & ) ) ); -    connect( BugSystem::self(), TQT_SIGNAL( bugListCacheMiss( const Package & ) ), -             TQT_SLOT( setCacheMiss( const Package & ) ) ); -    connect( BugSystem::self(), TQT_SIGNAL( bugListCacheMiss( const TQString & ) ), -             TQT_SLOT( setCacheMiss( const TQString & ) ) ); -    connect( BugSystem::self(), TQT_SIGNAL( commandQueued( BugCommand * ) ), -             TQT_SLOT( markBugCommand( BugCommand * ) ) ); -    connect( BugSystem::self(), TQT_SIGNAL( commandCanceled( const TQString & ) ), -             TQT_SLOT( clearCommand( const TQString & ) ) ); +    connect( BugSystem::self(), TQ_SIGNAL( bugListLoading( const Package &, const TQString & ) ), +             TQ_SLOT( setLoading( const Package &, const TQString & ) ) ); +    connect( BugSystem::self(), TQ_SIGNAL( bugListLoading( const TQString & ) ), +             TQ_SLOT( setLoading( const TQString & ) ) ); +    connect( BugSystem::self(), TQ_SIGNAL( bugListCacheMiss( const Package & ) ), +             TQ_SLOT( setCacheMiss( const Package & ) ) ); +    connect( BugSystem::self(), TQ_SIGNAL( bugListCacheMiss( const TQString & ) ), +             TQ_SLOT( setCacheMiss( const TQString & ) ) ); +    connect( BugSystem::self(), TQ_SIGNAL( commandQueued( BugCommand * ) ), +             TQ_SLOT( markBugCommand( BugCommand * ) ) ); +    connect( BugSystem::self(), TQ_SIGNAL( commandCanceled( const TQString & ) ), +             TQ_SLOT( clearCommand( const TQString & ) ) );  }  CWBugListContainer::~CWBugListContainer() @@ -261,9 +261,9 @@ void CWBugListContainer::searchBugByTitle( int options, const TQString& pattern      m_find = new KFind( pattern, options, this );      // Connect signals to code which handles highlighting      // of found text. -    connect(m_find, TQT_SIGNAL( highlight( const TQString &, int, int ) ), -            this, TQT_SLOT( searchHighlight( const TQString &, int, int ) ) ); -    connect(m_find, TQT_SIGNAL( findNext() ), this, TQT_SLOT( slotFindNext() ) ); +    connect(m_find, TQ_SIGNAL( highlight( const TQString &, int, int ) ), +            this, TQ_SLOT( searchHighlight( const TQString &, int, int ) ) ); +    connect(m_find, TQ_SIGNAL( findNext() ), this, TQ_SLOT( slotFindNext() ) );      m_findItem = (BugLVI *)m_listBugs->firstChild();      if ( options & KFindDialog::FromCursor && m_listBugs->currentItem() ) | 
