diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:01:12 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:01:12 -0600 |
commit | 4ffdeab3ca64c74e7053b2e26c93ebc7f6e22823 (patch) | |
tree | 29c8b57041bdd44df52c6090be5f4afc75bd1d4e /libktorrent/torrent | |
parent | 5a28de2492a2755625b0f7b214a5d38cdfd7eda1 (diff) | |
download | ktorrent-4ffdeab3ca64c74e7053b2e26c93ebc7f6e22823.tar.gz ktorrent-4ffdeab3ca64c74e7053b2e26c93ebc7f6e22823.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'libktorrent/torrent')
-rw-r--r-- | libktorrent/torrent/authenticate.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/authenticatebase.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/chunkdownload.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/chunkmanager.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/downloader.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/httptracker.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/movedatafilesjob.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/peer.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/peerdownloader.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/peermanager.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/peersourcemanager.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/queuemanager.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/server.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/serverauthenticate.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/torrentcontrol.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/torrentfile.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/tracker.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/udptracker.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/udptrackersocket.h | 2 | ||||
-rw-r--r-- | libktorrent/torrent/uploader.h | 2 |
20 files changed, 20 insertions, 20 deletions
diff --git a/libktorrent/torrent/authenticate.h b/libktorrent/torrent/authenticate.h index 36e6d05..0aeb499 100644 --- a/libktorrent/torrent/authenticate.h +++ b/libktorrent/torrent/authenticate.h @@ -44,7 +44,7 @@ namespace bt class Authenticate : public AuthenticateBase { Q_OBJECT - TQ_OBJECT + public: /** diff --git a/libktorrent/torrent/authenticatebase.h b/libktorrent/torrent/authenticatebase.h index 87c851b..2be4ad5 100644 --- a/libktorrent/torrent/authenticatebase.h +++ b/libktorrent/torrent/authenticatebase.h @@ -48,7 +48,7 @@ namespace bt class AuthenticateBase : public TQObject { Q_OBJECT - TQ_OBJECT + public: AuthenticateBase(mse::StreamSocket* s = 0); virtual ~AuthenticateBase(); diff --git a/libktorrent/torrent/chunkdownload.h b/libktorrent/torrent/chunkdownload.h index 83fd3e3..5c89017 100644 --- a/libktorrent/torrent/chunkdownload.h +++ b/libktorrent/torrent/chunkdownload.h @@ -62,7 +62,7 @@ namespace bt class ChunkDownload : public TQObject,public kt::ChunkDownloadInterface { Q_OBJECT - TQ_OBJECT + public: /** * Constructor, set the chunk and the PeerManager. diff --git a/libktorrent/torrent/chunkmanager.h b/libktorrent/torrent/chunkmanager.h index 2ff2ca7..19a0a30 100644 --- a/libktorrent/torrent/chunkmanager.h +++ b/libktorrent/torrent/chunkmanager.h @@ -61,7 +61,7 @@ namespace bt class ChunkManager : public TQObject { Q_OBJECT - TQ_OBJECT + Torrent & tor; TQString index_file,file_info_file,file_priority_file; diff --git a/libktorrent/torrent/downloader.h b/libktorrent/torrent/downloader.h index fece8a6..6c470a1 100644 --- a/libktorrent/torrent/downloader.h +++ b/libktorrent/torrent/downloader.h @@ -67,7 +67,7 @@ namespace bt class Downloader : public TQObject { Q_OBJECT - TQ_OBJECT + public: /** diff --git a/libktorrent/torrent/httptracker.h b/libktorrent/torrent/httptracker.h index effb4b7..b9433cd 100644 --- a/libktorrent/torrent/httptracker.h +++ b/libktorrent/torrent/httptracker.h @@ -42,7 +42,7 @@ namespace bt class HTTPTracker : public Tracker { Q_OBJECT - TQ_OBJECT + public: HTTPTracker(const KURL & url,kt::TorrentInterface* tor,const PeerID & id,int tier); virtual ~HTTPTracker(); diff --git a/libktorrent/torrent/movedatafilesjob.h b/libktorrent/torrent/movedatafilesjob.h index 272ac14..22e7e60 100644 --- a/libktorrent/torrent/movedatafilesjob.h +++ b/libktorrent/torrent/movedatafilesjob.h @@ -32,7 +32,7 @@ namespace bt class MoveDataFilesJob : public KIO::Job { Q_OBJECT - TQ_OBJECT + public: MoveDataFilesJob(); virtual ~MoveDataFilesJob(); diff --git a/libktorrent/torrent/peer.h b/libktorrent/torrent/peer.h index bb487aa..c5dd974 100644 --- a/libktorrent/torrent/peer.h +++ b/libktorrent/torrent/peer.h @@ -68,7 +68,7 @@ namespace bt //,public Object { Q_OBJECT - TQ_OBJECT + public: /** * Constructor, set the socket. diff --git a/libktorrent/torrent/peerdownloader.h b/libktorrent/torrent/peerdownloader.h index 6173c97..16957e3 100644 --- a/libktorrent/torrent/peerdownloader.h +++ b/libktorrent/torrent/peerdownloader.h @@ -94,7 +94,7 @@ namespace bt class PeerDownloader : public TQObject { Q_OBJECT - TQ_OBJECT + public: /** * Constructor, set the Peer diff --git a/libktorrent/torrent/peermanager.h b/libktorrent/torrent/peermanager.h index df55beb..33492c5 100644 --- a/libktorrent/torrent/peermanager.h +++ b/libktorrent/torrent/peermanager.h @@ -56,7 +56,7 @@ namespace bt class PeerManager : public TQObject { Q_OBJECT - TQ_OBJECT + public: /** * Constructor. diff --git a/libktorrent/torrent/peersourcemanager.h b/libktorrent/torrent/peersourcemanager.h index d256397..e6ef3e6 100644 --- a/libktorrent/torrent/peersourcemanager.h +++ b/libktorrent/torrent/peersourcemanager.h @@ -51,7 +51,7 @@ namespace bt class PeerSourceManager : public TQObject, public kt::TrackersList { Q_OBJECT - TQ_OBJECT + TorrentControl* tor; PeerManager* pman; diff --git a/libktorrent/torrent/queuemanager.h b/libktorrent/torrent/queuemanager.h index 9771f53..26b1012 100644 --- a/libktorrent/torrent/queuemanager.h +++ b/libktorrent/torrent/queuemanager.h @@ -56,7 +56,7 @@ namespace bt class QueueManager : public TQObject { Q_OBJECT - TQ_OBJECT + public: QueueManager(); diff --git a/libktorrent/torrent/server.h b/libktorrent/torrent/server.h index b53c2da..3129fd2 100644 --- a/libktorrent/torrent/server.h +++ b/libktorrent/torrent/server.h @@ -45,7 +45,7 @@ namespace bt class Server : public TQObject { Q_OBJECT - TQ_OBJECT + TQPtrList<PeerManager> peer_managers; ServerSocket* sock; diff --git a/libktorrent/torrent/serverauthenticate.h b/libktorrent/torrent/serverauthenticate.h index 3a1c320..bc65cba 100644 --- a/libktorrent/torrent/serverauthenticate.h +++ b/libktorrent/torrent/serverauthenticate.h @@ -38,7 +38,7 @@ namespace bt class ServerAuthenticate : public AuthenticateBase { Q_OBJECT - TQ_OBJECT + public: ServerAuthenticate(mse::StreamSocket* sock,Server* server); virtual ~ServerAuthenticate(); diff --git a/libktorrent/torrent/torrentcontrol.h b/libktorrent/torrent/torrentcontrol.h index c017728..8313afe 100644 --- a/libktorrent/torrent/torrentcontrol.h +++ b/libktorrent/torrent/torrentcontrol.h @@ -68,7 +68,7 @@ namespace bt class TorrentControl : public kt::TorrentInterface { Q_OBJECT - TQ_OBJECT + public: TorrentControl(); virtual ~TorrentControl(); diff --git a/libktorrent/torrent/torrentfile.h b/libktorrent/torrent/torrentfile.h index 9a1d494..7c22611 100644 --- a/libktorrent/torrent/torrentfile.h +++ b/libktorrent/torrent/torrentfile.h @@ -38,7 +38,7 @@ namespace bt class TorrentFile : public kt::TorrentFileInterface { Q_OBJECT - TQ_OBJECT + Uint32 index; Uint64 cache_offset; diff --git a/libktorrent/torrent/tracker.h b/libktorrent/torrent/tracker.h index a017f9e..7a58264 100644 --- a/libktorrent/torrent/tracker.h +++ b/libktorrent/torrent/tracker.h @@ -44,7 +44,7 @@ namespace bt class Tracker : public kt::PeerSource { Q_OBJECT - TQ_OBJECT + public: Tracker(const KURL & url,kt::TorrentInterface* tor,const PeerID & id,int tier); virtual ~Tracker(); diff --git a/libktorrent/torrent/udptracker.h b/libktorrent/torrent/udptracker.h index 85bc21e..240a4ff 100644 --- a/libktorrent/torrent/udptracker.h +++ b/libktorrent/torrent/udptracker.h @@ -62,7 +62,7 @@ namespace bt class UDPTracker : public Tracker { Q_OBJECT - TQ_OBJECT + public: UDPTracker(const KURL & url,kt::TorrentInterface* tor,const PeerID & id,int tier); virtual ~UDPTracker(); diff --git a/libktorrent/torrent/udptrackersocket.h b/libktorrent/torrent/udptrackersocket.h index 7992cdd..2f2900b 100644 --- a/libktorrent/torrent/udptrackersocket.h +++ b/libktorrent/torrent/udptrackersocket.h @@ -54,7 +54,7 @@ namespace bt class UDPTrackerSocket : public TQObject { Q_OBJECT - TQ_OBJECT + public: UDPTrackerSocket(); virtual ~UDPTrackerSocket(); diff --git a/libktorrent/torrent/uploader.h b/libktorrent/torrent/uploader.h index 0950780..aa4f099 100644 --- a/libktorrent/torrent/uploader.h +++ b/libktorrent/torrent/uploader.h @@ -41,7 +41,7 @@ namespace bt class Uploader : public TQObject { Q_OBJECT - TQ_OBJECT + public: /** * Constructor, sets the ChunkManager. |