From bc6622cea71b99a59e4631652c02af6f5ad324d0 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 5 Dec 2023 21:12:38 +0900 Subject: Removed unnecessary code and files Signed-off-by: Michele Calgaro --- src/processlistviewitem.cpp | 73 ++------------------------------------------- 1 file changed, 2 insertions(+), 71 deletions(-) (limited to 'src/processlistviewitem.cpp') 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() -- cgit v1.2.1