summaryrefslogtreecommitdiffstats
path: root/kftpgrabber/src/widgets/listview.h
diff options
context:
space:
mode:
Diffstat (limited to 'kftpgrabber/src/widgets/listview.h')
-rw-r--r--kftpgrabber/src/widgets/listview.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kftpgrabber/src/widgets/listview.h b/kftpgrabber/src/widgets/listview.h
index 8718f97..487e9e1 100644
--- a/kftpgrabber/src/widgets/listview.h
+++ b/kftpgrabber/src/widgets/listview.h
@@ -36,26 +36,26 @@
#ifndef KFTPLISTVIEW_H
#define KFTPLISTVIEW_H
-#include <klistview.h>
+#include <tdelistview.h>
namespace KFTPWidgets {
/**
* @author Jernej Kos
*/
-class ListView : public KListView
+class ListView : public TDEListView
{
Q_OBJECT
public:
- ListView(QWidget *parent = 0, const char *name = 0);
+ ListView(TQWidget *parent = 0, const char *name = 0);
~ListView();
- void setEmptyListText(const QString &text);
- virtual void resizeEvent(QResizeEvent *e);
+ void setEmptyListText(const TQString &text);
+ virtual void resizeEvent(TQResizeEvent *e);
protected:
- virtual void drawContentsOffset(QPainter * p, int ox, int oy, int cx, int cy, int cw, int ch );
+ virtual void drawContentsOffset(TQPainter * p, int ox, int oy, int cx, int cy, int cw, int ch );
private:
- QString m_emptyListText;
+ TQString m_emptyListText;
};
}