diff options
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 c36e982c..1c6810c6 100644 --- a/dcoprss/feedbrowser.cpp +++ b/dcoprss/feedbrowser.cpp @@ -13,15 +13,15 @@ #include <tqdatastream.h> #include <tqvbox.h> -CategoryItem::CategoryItem( KListView *tqparent, const TQString &category ) - : KListViewItem( tqparent ), +CategoryItem::CategoryItem( KListView *parent, const TQString &category ) + : KListViewItem( parent ), m_category( category ) { init(); } -CategoryItem::CategoryItem( KListViewItem *tqparent, const TQString &category ) - : KListViewItem( tqparent ), +CategoryItem::CategoryItem( KListViewItem *parent, const TQString &category ) + : KListViewItem( parent ), m_category( category ) { init(); @@ -66,8 +66,8 @@ void CategoryItem::gotCategories( const TQStringList &categories ) KListViewItem::setOpen( true ); } -DCOPRSSIface::DCOPRSSIface( TQObject *tqparent, const char *name ) : - TQObject( tqparent, name ), DCOPObject( "FeedBrowser" ) +DCOPRSSIface::DCOPRSSIface( TQObject *parent, const char *name ) : + TQObject( parent, name ), DCOPObject( "FeedBrowser" ) { connectDCOPSignal( "rssservice", "RSSQuery", "gotCategories(TQStringList)", "slotGotCategories(TQStringList)", false ); @@ -87,8 +87,8 @@ void DCOPRSSIface::slotGotCategories( const TQStringList &categories ) emit gotCategories( categories ); } -FeedBrowserDlg::FeedBrowserDlg( TQWidget *tqparent, const char *name ) - : KDialogBase( tqparent, name, true, i18n( "DCOPRSS Feed Browser" ), +FeedBrowserDlg::FeedBrowserDlg( TQWidget *parent, const char *name ) + : KDialogBase( parent, name, true, i18n( "DCOPRSS Feed Browser" ), Close, Close, true ) { m_dcopIface = new DCOPRSSIface( TQT_TQOBJECT(this), "m_dcopIface" ); |