summaryrefslogtreecommitdiffstats
path: root/ksysguard/gui/SensorDisplayLib/ProcessList.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:11:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:11:21 -0600
commitf537c21b68e08f649b1b297bce8f3904603137e0 (patch)
treefb33065387509dea898c90022ddec9c3f8ede86d /ksysguard/gui/SensorDisplayLib/ProcessList.h
parentdc5f267664506a312203c26bfe9001a448b0bb0f (diff)
downloadtdebase-f537c21b68e08f649b1b297bce8f3904603137e0.tar.gz
tdebase-f537c21b68e08f649b1b297bce8f3904603137e0.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'ksysguard/gui/SensorDisplayLib/ProcessList.h')
-rw-r--r--ksysguard/gui/SensorDisplayLib/ProcessList.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ksysguard/gui/SensorDisplayLib/ProcessList.h b/ksysguard/gui/SensorDisplayLib/ProcessList.h
index fc668cf15..db3f7637b 100644
--- a/ksysguard/gui/SensorDisplayLib/ProcessList.h
+++ b/ksysguard/gui/SensorDisplayLib/ProcessList.h
@@ -42,11 +42,11 @@ typedef const char* (*KeyFunc)(const char*);
* To support bi-directional sorting, and sorting of text, integers etc. we
* need a specialized version of TQListViewItem.
*/
-class ProcessLVI : public KListViewItem
+class ProcessLVI : public TDEListViewItem
{
public:
- ProcessLVI(TQListView* lv) : KListViewItem(lv) { }
- ProcessLVI(TQListViewItem* lvi) : KListViewItem(lvi) { }
+ ProcessLVI(TQListView* lv) : TDEListViewItem(lv) { }
+ ProcessLVI(TQListViewItem* lvi) : TDEListViewItem(lvi) { }
virtual int compare( TQListViewItem *item, int column, bool ) const;
};
@@ -57,7 +57,7 @@ class TQPopupMenu;
* This class implementes a table filled with information about the running
* processes. The table is derived from TQListView.
*/
-class ProcessList : public KListView
+class ProcessList : public TDEListView
{
Q_OBJECT