summaryrefslogtreecommitdiffstats
path: root/src/logviewer.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:05:53 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:05:53 -0600
commit4955fd5009a6f4b615fec006c960c0ed99e3d9a7 (patch)
tree5721cb5c85684019e0649729dca1b90e93934efb /src/logviewer.h
parent5b1e3197e7c9ef6e24eaf7863a7ddea5996e581b (diff)
downloadsoundkonverter-4955fd5009a6f4b615fec006c960c0ed99e3d9a7.tar.gz
soundkonverter-4955fd5009a6f4b615fec006c960c0ed99e3d9a7.zip
Rename a number of classes to enhance compatibility with KDE4
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() ); }
};