summaryrefslogtreecommitdiffstats
path: root/dcoprss/feedbrowser.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /dcoprss/feedbrowser.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'dcoprss/feedbrowser.h')
-rw-r--r--dcoprss/feedbrowser.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/dcoprss/feedbrowser.h b/dcoprss/feedbrowser.h
index 829ecd5e..9b8ce86f 100644
--- a/dcoprss/feedbrowser.h
+++ b/dcoprss/feedbrowser.h
@@ -1,45 +1,45 @@
#ifndef FEEDBROWSER_H
#define FEEDBROWSER_H
-#include <qobject.h>
+#include <tqobject.h>
#include <dcopobject.h>
#include <kdialogbase.h>
#include <klistview.h>
-class DCOPRSSIface : public QObject, public DCOPObject
+class DCOPRSSIface : public TQObject, public DCOPObject
{
K_DCOP
Q_OBJECT
public:
- DCOPRSSIface( QObject *parent, const char *name = 0 );
+ DCOPRSSIface( TQObject *parent, const char *name = 0 );
k_dcop:
- void slotGotCategories( const QStringList &categories );
+ void slotGotCategories( const TQStringList &categories );
public slots:
- void getCategories( const QString &cat = "Top" );
+ void getCategories( const TQString &cat = "Top" );
signals:
- void gotCategories( const QStringList &categories );
+ void gotCategories( const TQStringList &categories );
};
-class CategoryItem : public QObject, public KListViewItem
+class CategoryItem : public TQObject, public KListViewItem
{
Q_OBJECT
public:
- CategoryItem( KListView *parent, const QString &category );
- CategoryItem( KListViewItem *parent, const QString &category );
+ CategoryItem( KListView *parent, const TQString &category );
+ CategoryItem( KListViewItem *parent, const TQString &category );
virtual void setOpen( bool open );
private slots:
- void gotCategories( const QStringList &categories );
+ void gotCategories( const TQStringList &categories );
private:
void populate();
void init();
- QString m_category;
+ TQString m_category;
bool m_populated;
DCOPRSSIface *m_dcopIface;
};
@@ -49,11 +49,11 @@ class FeedBrowserDlg : public KDialogBase
Q_OBJECT
friend class CategoryItem;
public:
- FeedBrowserDlg( QWidget *parent, const char *name = 0 );
+ FeedBrowserDlg( TQWidget *parent, const char *name = 0 );
private slots:
- void itemSelected( QListViewItem *item );
- void gotTopCategories( const QStringList &categories );
+ void itemSelected( TQListViewItem *item );
+ void gotTopCategories( const TQStringList &categories );
private:
void getTopCategories();