diff --git a/kstreamripper.kdevses b/kstreamripper.kdevses deleted file mode 100644 index 8eba494..0000000 --- a/kstreamripper.kdevses +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/kstreamripper.tdevelop b/kstreamripper.tdevelop deleted file mode 100644 index 9fb91ad..0000000 --- a/kstreamripper.tdevelop +++ /dev/null @@ -1,206 +0,0 @@ - - - - Michael Goettsche - mail@tuxipuxi.de - 0.1 - KDevKDEAutoProject - C++ - - C++ - Code - Qt - KDE - - . - false - - - - - - - src/kstreamripper - default - - - src/kstreamripper - executable - / - - false - true - - - - - - - - optimized - GccOptions - GppOptions - G77Options - -O2 -g0 - - - --enable-debug=full - debug - GccOptions - GppOptions - G77Options - -O0 -g3 - - - - --prefix=/opt/kde --enable-debug=full - - - - - kdevgccoptions - kdevgppoptions - kdevpgf77options - - - - - - - - - - - - - - false - 1 - false - - - - - - - - - - - false - false - - - false - false - *.o,*.lo,CVS - - - - - gtk - gnustep - python - php - perl - - - /home/tuxipuxi/Documents/cpp/kde/kstreamripper/html/ - /home/tuxipuxi/Documents/cpp/kde/kstreamripper/html/ - - - - - - - - - libtool - - - - - - true - false - false - - - false - true - 10 - - - - - - - - - - - - - .h - .cpp - - - - - true - true - true - false - true - true - true - 250 - 400 - 250 - - - - - set - m_,_ - theValue - true - true - - - - false - false - - - 0.1 - - - - - - - - - false - false - false - 0 - false - false - false - false - - - - -f - - - - -dP - -f - -C -d -P - -u3 -p - - - diff --git a/kstreamripper.tdevelop.pcs b/kstreamripper.tdevelop.pcs deleted file mode 100644 index 0139aa7..0000000 Binary files a/kstreamripper.tdevelop.pcs and /dev/null differ 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();