diff options
author | Michele Calgaro <[email protected]> | 2024-01-13 17:34:53 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-13 17:51:33 +0900 |
commit | 1329ec6abbcb7b79cd960e0ca138f16598d5f11f (patch) | |
tree | 8b64fab3a352aada6a046f69f1f7e8a6ad819594 /dcoprss/feedbrowser.cpp | |
parent | 69c2eb8d5f2ed64c876b2a1081cc83ed9f4652d3 (diff) | |
download | tdenetwork-1329ec6abbcb7b79cd960e0ca138f16598d5f11f.tar.gz tdenetwork-1329ec6abbcb7b79cd960e0ca138f16598d5f11f.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'dcoprss/feedbrowser.cpp')
-rw-r--r-- | dcoprss/feedbrowser.cpp | 16 |
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 ); |