summaryrefslogtreecommitdiffstats
path: root/dcoprss/feedbrowser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dcoprss/feedbrowser.cpp')
-rw-r--r--dcoprss/feedbrowser.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/dcoprss/feedbrowser.cpp b/dcoprss/feedbrowser.cpp
index 7ba86c51..6bee25e6 100644
--- a/dcoprss/feedbrowser.cpp
+++ b/dcoprss/feedbrowser.cpp
@@ -47,8 +47,8 @@ void CategoryItem::setOpen( bool open )
void CategoryItem::populate()
{
m_dcopIface = new DCOPRSSIface( this, "m_dcopIface" );
- connect( m_dcopIface, TQT_SIGNAL( gotCategories( const TQStringList & ) ),
- this, TQT_SLOT( gotCategories( const TQStringList & ) ) );
+ connect( m_dcopIface, TQ_SIGNAL( gotCategories( const TQStringList & ) ),
+ this, TQ_SLOT( gotCategories( const TQStringList & ) ) );
m_dcopIface->getCategories( m_category );
}
@@ -92,8 +92,8 @@ FeedBrowserDlg::FeedBrowserDlg( TQWidget *parent, const char *name )
Close, Close, true )
{
m_dcopIface = new DCOPRSSIface( this, "m_dcopIface" );
- connect( m_dcopIface, TQT_SIGNAL( gotCategories( const TQStringList & ) ),
- this, TQT_SLOT( gotTopCategories( const TQStringList & ) ) );
+ connect( m_dcopIface, TQ_SIGNAL( gotCategories( const TQStringList & ) ),
+ this, TQ_SLOT( gotTopCategories( const TQStringList & ) ) );
TQVBox *mainWidget = makeVBoxMainWidget();
@@ -101,10 +101,10 @@ FeedBrowserDlg::FeedBrowserDlg( TQWidget *parent, const char *name )
m_feedList->setAllColumnsShowFocus( true );
m_feedList->setRootIsDecorated( true );
m_feedList->addColumn( i18n( "Name" ) );
- connect( m_feedList, TQT_SIGNAL( executed( TQListViewItem * ) ),
- this, TQT_SLOT( itemSelected( TQListViewItem * ) ) );
- connect( m_feedList, TQT_SIGNAL( returnPressed( TQListViewItem * ) ),
- this, TQT_SLOT( itemSelected( TQListViewItem * ) ) );
+ connect( m_feedList, TQ_SIGNAL( executed( TQListViewItem * ) ),
+ this, TQ_SLOT( itemSelected( TQListViewItem * ) ) );
+ connect( m_feedList, TQ_SIGNAL( returnPressed( TQListViewItem * ) ),
+ this, TQ_SLOT( itemSelected( TQListViewItem * ) ) );
resize( 500, 400 );