forked from pool/ktorrent
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
2005-12-17 Danny Kukawka <danny.kukawka@web.de>
|
|
|
|
* apps/ktorrent/ktorrentcore.cpp/h: removed not needed
|
|
variables from header and frim constructor.
|
|
|
|
Index: apps/ktorrent/ktorrentcore.cpp
|
|
===================================================================
|
|
--- apps/ktorrent/ktorrentcore.cpp (Revision 489023)
|
|
+++ apps/ktorrent/ktorrentcore.cpp (Arbeitskopie)
|
|
@@ -50,7 +50,7 @@
|
|
using namespace kt;
|
|
|
|
|
|
-KTorrentCore::KTorrentCore(kt::GUIInterface* gui) : max_downloads(0),keep_seeding(true),pman(0)
|
|
+KTorrentCore::KTorrentCore(kt::GUIInterface* gui) : pman(0)
|
|
{
|
|
qman = new QueueManager();
|
|
data_dir = Settings::tempDir();
|
|
Index: apps/ktorrent/ktorrentcore.h
|
|
===================================================================
|
|
--- apps/ktorrent/ktorrentcore.h (Revision 489023)
|
|
+++ apps/ktorrent/ktorrentcore.h (Arbeitskopie)
|
|
@@ -249,8 +249,6 @@
|
|
private:
|
|
// QPtrList<kt::TorrentInterface> downloads;
|
|
QString data_dir;
|
|
- int max_downloads;
|
|
- bool keep_seeding;
|
|
QTimer update_timer;
|
|
bt::Uint64 removed_bytes_up,removed_bytes_down;
|
|
kt::PluginManager* pman;
|