diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-05 21:12:38 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-06 19:36:24 +0900 |
commit | bc6622cea71b99a59e4631652c02af6f5ad324d0 (patch) | |
tree | 440887f89de4d30deae0b5697953def8034cc2e9 /src | |
parent | 5da88b7efa1251c76fb8a7d332b07a66235415b3 (diff) | |
download | kstreamripper-bc6622cea71b99a59e4631652c02af6f5ad324d0.tar.gz kstreamripper-bc6622cea71b99a59e4631652c02af6f5ad324d0.zip |
Removed unnecessary code and files
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src')
-rw-r--r-- | src/processlistviewitem.cpp | 73 | ||||
-rw-r--r-- | src/processlistviewitem.h | 27 |
2 files changed, 3 insertions, 97 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() diff --git a/src/processlistviewitem.h b/src/processlistviewitem.h index 5af8d6f..f4c4049 100644 --- a/src/processlistviewitem.h +++ b/src/processlistviewitem.h @@ -34,32 +34,7 @@ class ProcessListViewItem : public TQObject, public TQListViewItem public: - ProcessListViewItem( TQListView * parent ); - ProcessListViewItem( TQListViewItem * parent ); - ProcessListViewItem( TQListView * parent, TQListViewItem * after ); - ProcessListViewItem( TQListViewItem * parent, TQListViewItem * after ); - - ProcessListViewItem( TQListView * parent, - TQString, TQString = TQString(), - TQString = TQString(), TQString = TQString(), - TQString = TQString(), TQString = TQString(), - TQString = TQString(), TQString = TQString() ); - ProcessListViewItem( TQListViewItem * parent, - TQString, TQString = TQString(), - TQString = TQString(), TQString = TQString(), - TQString = TQString(), TQString = TQString(), - TQString = TQString(), TQString = TQString() ); - - ProcessListViewItem( TQListView * parent, TQListViewItem * after, - TQString, TQString = TQString(), - TQString = TQString(), TQString = TQString(), - TQString = TQString(), TQString = TQString(), - TQString = TQString(), TQString = TQString() ); - ProcessListViewItem( TQListViewItem * parent, TQListViewItem * after, - TQString, TQString = TQString(), - TQString = TQString(), TQString = TQString(), - TQString = TQString(), TQString = TQString(), - TQString = TQString(), TQString = TQString() ); + ProcessListViewItem( TQListView * parent, TQString, TQString = TQString(), TQString = TQString()); ~ProcessListViewItem(); |