summaryrefslogtreecommitdiffstats
path: root/src/logviewer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/logviewer.h')
-rwxr-xr-xsrc/logviewer.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/logviewer.h b/src/logviewer.h
index 4ba7ab8..0665e0d 100755
--- a/src/logviewer.h
+++ b/src/logviewer.h
@@ -15,7 +15,7 @@ class Logger;
* @author Daniel Faust <hessijames@gmail.com>
* @version 0.3
*/
-class LogViewerItem : public KListViewItem
+class LogViewerItem : public TDEListViewItem
{
public:
/**
@@ -24,7 +24,7 @@ public:
* @param after The item, the new item should be placed after
* @param label1 The text for the first column
*/
- LogViewerItem( KListView* parent, LogViewerItem* after, TQString label1 );
+ LogViewerItem( TDEListView* parent, LogViewerItem* after, TQString label1 );
/**
* Constructor
@@ -41,8 +41,8 @@ public:
virtual void paintCell( TQPainter* p, const TQColorGroup& cg, int column, int width, int alignment );
- LogViewerItem* nextSibling() const { return static_cast<LogViewerItem*>( KListViewItem::nextSibling() ); }
- LogViewerItem* firstChild() const { return static_cast<LogViewerItem*>( KListViewItem::firstChild() ); }
+ LogViewerItem* nextSibling() const { return static_cast<LogViewerItem*>( TDEListViewItem::nextSibling() ); }
+ LogViewerItem* firstChild() const { return static_cast<LogViewerItem*>( TDEListViewItem::firstChild() ); }
bool converting;
};
@@ -53,7 +53,7 @@ public:
* @author Daniel Faust <hessijames@gmail.com>
* @version 0.3
*/
-class LogViewerList : public KListView
+class LogViewerList : public TDEListView
{
Q_OBJECT
@@ -70,7 +70,7 @@ public:
*/
virtual ~LogViewerList();
- LogViewerItem* firstChild() const { return static_cast<LogViewerItem*>( KListView::firstChild() ); }
+ LogViewerItem* firstChild() const { return static_cast<LogViewerItem*>( TDEListView::firstChild() ); }
};