diff options
author | Michele Calgaro <[email protected]> | 2024-01-13 17:34:53 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-18 09:59:16 +0900 |
commit | 40393e30bb743346b6b40bf130da35419c12ebdc (patch) | |
tree | 9330d82486c7b3125b8275914565b324f9af523e /dcoprss/feedbrowser.cpp | |
parent | 05594058244ba6a1866d5758ae412fb5afd6d727 (diff) | |
download | tdenetwork-40393e30bb743346b6b40bf130da35419c12ebdc.tar.gz tdenetwork-40393e30bb743346b6b40bf130da35419c12ebdc.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 1329ec6abbcb7b79cd960e0ca138f16598d5f11f)
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 ); |