summaryrefslogtreecommitdiffstats
path: root/kget/kget_plug_in/kget_linkview.h
diff options
context:
space:
mode:
Diffstat (limited to 'kget/kget_plug_in/kget_linkview.h')
-rw-r--r--kget/kget_plug_in/kget_linkview.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kget/kget_plug_in/kget_linkview.h b/kget/kget_plug_in/kget_linkview.h
index a6d7961c..26ce28fc 100644
--- a/kget/kget_plug_in/kget_linkview.h
+++ b/kget/kget_plug_in/kget_linkview.h
@@ -8,7 +8,7 @@
#ifndef KGET_LINKVIEW_H
#define KGET_LINKVIEW_H
-#include <qptrlist.h>
+#include <tqptrlist.h>
#include <klistview.h>
#include <kmainwindow.h>
@@ -19,7 +19,7 @@
class LinkViewItem : public QListViewItem
{
public:
- LinkViewItem( QListView *parent, const LinkItem * lnk );
+ LinkViewItem( TQListView *parent, const LinkItem * lnk );
const LinkItem *link;
};
@@ -29,11 +29,11 @@ class KGetLinkView : public KMainWindow
Q_OBJECT
public:
- KGetLinkView( QWidget *parent = 0L, const char *name = 0L );
+ KGetLinkView( TQWidget *parent = 0L, const char *name = 0L );
~KGetLinkView();
- void setLinks( QPtrList<LinkItem>& links );
- void setPageURL( const QString& url );
+ void setLinks( TQPtrList<LinkItem>& links );
+ void setPageURL( const TQString& url );
signals:
void leechURLs( const KURL::List& urls );
@@ -43,9 +43,9 @@ private slots:
void slotSelectAll();
private:
- void showLinks( const QPtrList<LinkItem>& links );
+ void showLinks( const TQPtrList<LinkItem>& links );
- QPtrList<LinkItem> m_links;
+ TQPtrList<LinkItem> m_links;
KListView *m_view;