diff options
Diffstat (limited to 'dcoprss/feedbrowser.h')
-rw-r--r-- | dcoprss/feedbrowser.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/dcoprss/feedbrowser.h b/dcoprss/feedbrowser.h index 9b8ce86f..88d24ea8 100644 --- a/dcoprss/feedbrowser.h +++ b/dcoprss/feedbrowser.h @@ -10,8 +10,9 @@ class DCOPRSSIface : public TQObject, public DCOPObject { K_DCOP Q_OBJECT +// TQ_OBJECT public: - DCOPRSSIface( TQObject *parent, const char *name = 0 ); + DCOPRSSIface( TQObject *tqparent, const char *name = 0 ); k_dcop: void slotGotCategories( const TQStringList &categories ); @@ -26,9 +27,10 @@ class DCOPRSSIface : public TQObject, public DCOPObject class CategoryItem : public TQObject, public KListViewItem { Q_OBJECT +// TQ_OBJECT public: - CategoryItem( KListView *parent, const TQString &category ); - CategoryItem( KListViewItem *parent, const TQString &category ); + CategoryItem( KListView *tqparent, const TQString &category ); + CategoryItem( KListViewItem *tqparent, const TQString &category ); virtual void setOpen( bool open ); @@ -47,9 +49,10 @@ class CategoryItem : public TQObject, public KListViewItem class FeedBrowserDlg : public KDialogBase { Q_OBJECT +// TQ_OBJECT friend class CategoryItem; public: - FeedBrowserDlg( TQWidget *parent, const char *name = 0 ); + FeedBrowserDlg( TQWidget *tqparent, const char *name = 0 ); private slots: void itemSelected( TQListViewItem *item ); |