summaryrefslogtreecommitdiffstats
path: root/src/processlistviewitem.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-05 21:12:38 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-06 19:36:24 +0900
commitbc6622cea71b99a59e4631652c02af6f5ad324d0 (patch)
tree440887f89de4d30deae0b5697953def8034cc2e9 /src/processlistviewitem.cpp
parent5da88b7efa1251c76fb8a7d332b07a66235415b3 (diff)
downloadkstreamripper-bc6622cea71b99a59e4631652c02af6f5ad324d0.tar.gz
kstreamripper-bc6622cea71b99a59e4631652c02af6f5ad324d0.zip
Removed unnecessary code and files
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/processlistviewitem.cpp')
-rw-r--r--src/processlistviewitem.cpp73
1 files changed, 2 insertions, 71 deletions
diff --git a/src/processlistviewitem.cpp b/src/processlistviewitem.cpp
index a3cd67f..3db6a0e 100644
--- a/src/processlistviewitem.cpp
+++ b/src/processlistviewitem.cpp
@@ -24,78 +24,9 @@
#include "processlistviewitem.h"
#include "processcontroller.h"
-ProcessListViewItem::ProcessListViewItem( TQListView * parent )
- : TQListViewItem(parent), myProcessController(new ProcessController(this))
-{
-}
-
-ProcessListViewItem::ProcessListViewItem( TQListViewItem * parent )
- : TQListViewItem(parent), myProcessController(new ProcessController(this))
-{
-}
-
-ProcessListViewItem::ProcessListViewItem( TQListView * parent, TQListViewItem * after )
- : TQListViewItem(parent, after), myProcessController(new ProcessController(this))
-{
-}
-
-ProcessListViewItem::ProcessListViewItem( TQListViewItem * parent, TQListViewItem * after )
- : TQListViewItem(parent, after), myProcessController(new ProcessController(this))
-{
-}
-
ProcessListViewItem::ProcessListViewItem( TQListView * parent,
- TQString label1,
- TQString label2,
- TQString label3,
- TQString label4,
- TQString label5,
- TQString label6,
- TQString label7,
- TQString label8 )
- : TQListViewItem(parent, label1, label2, label3, label4, label5, label6, label7, label8), myProcessController(new ProcessController(this))
-{
-}
-
-ProcessListViewItem::ProcessListViewItem( TQListViewItem * parent,
- TQString label1,
- TQString label2,
- TQString label3,
- TQString label4,
- TQString label5,
- TQString label6,
- TQString label7,
- TQString label8 )
- : TQListViewItem(parent, label1, label2, label3, label4, label5, label6, label7, label8), myProcessController(new ProcessController(this))
-{
-}
-
-ProcessListViewItem::ProcessListViewItem( TQListView * parent, TQListViewItem * after,
- TQString label1,
- TQString label2,
- TQString label3,
- TQString label4,
- TQString label5,
- TQString label6,
- TQString label7,
- TQString label8 )
- : TQListViewItem(parent, after, label1, label2, label3, label4, label5, label6, label7, label8),
- myProcessController(new ProcessController(this))
-{
-}
-
-ProcessListViewItem::ProcessListViewItem( TQListViewItem * parent, TQListViewItem * after,
- TQString label1,
- TQString label2,
- TQString label3,
- TQString label4,
- TQString label5,
- TQString label6,
- TQString label7,
- TQString label8 )
- : TQListViewItem(parent, after, label1, label2, label3, label4, label5, label6, label7, label8),
- myProcessController(new ProcessController(this))
-{
+ TQString label1, TQString label2, TQString label3)
+ : TQListViewItem(parent, label1, label2, label3), myProcessController(new ProcessController(this)){
}
ProcessListViewItem::~ProcessListViewItem()