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/interfaces | |
parent | 5a28de2492a2755625b0f7b214a5d38cdfd7eda1 (diff) | |
download | ktorrent-4ffdeab3ca64c74e7053b2e26c93ebc7f6e22823.tar.gz ktorrent-4ffdeab3ca64c74e7053b2e26c93ebc7f6e22823.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'libktorrent/interfaces')
-rw-r--r-- | libktorrent/interfaces/coreinterface.h | 2 | ||||
-rw-r--r-- | libktorrent/interfaces/exitoperation.h | 4 | ||||
-rw-r--r-- | libktorrent/interfaces/peersource.h | 2 | ||||
-rw-r--r-- | libktorrent/interfaces/plugin.h | 2 | ||||
-rw-r--r-- | libktorrent/interfaces/torrentfileinterface.h | 2 | ||||
-rw-r--r-- | libktorrent/interfaces/torrentinterface.h | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/libktorrent/interfaces/coreinterface.h b/libktorrent/interfaces/coreinterface.h index 9ca2ae1..d3e80c9 100644 --- a/libktorrent/interfaces/coreinterface.h +++ b/libktorrent/interfaces/coreinterface.h @@ -53,7 +53,7 @@ namespace kt class CoreInterface : public TQObject { Q_OBJECT - TQ_OBJECT + public: CoreInterface(); virtual ~CoreInterface(); diff --git a/libktorrent/interfaces/exitoperation.h b/libktorrent/interfaces/exitoperation.h index 4cad283..631acb4 100644 --- a/libktorrent/interfaces/exitoperation.h +++ b/libktorrent/interfaces/exitoperation.h @@ -38,7 +38,7 @@ namespace kt class ExitOperation : public TQObject { Q_OBJECT - TQ_OBJECT + public: ExitOperation(); virtual ~ExitOperation(); @@ -55,7 +55,7 @@ namespace kt class ExitJobOperation : public ExitOperation { Q_OBJECT - TQ_OBJECT + public: ExitJobOperation(KIO::Job* j); virtual ~ExitJobOperation(); diff --git a/libktorrent/interfaces/peersource.h b/libktorrent/interfaces/peersource.h index c7aa73d..4b3b82a 100644 --- a/libktorrent/interfaces/peersource.h +++ b/libktorrent/interfaces/peersource.h @@ -50,7 +50,7 @@ namespace kt class PeerSource : public TQObject { Q_OBJECT - TQ_OBJECT + public: PeerSource(); virtual ~PeerSource(); diff --git a/libktorrent/interfaces/plugin.h b/libktorrent/interfaces/plugin.h index 9c72a0f..64829dc 100644 --- a/libktorrent/interfaces/plugin.h +++ b/libktorrent/interfaces/plugin.h @@ -48,7 +48,7 @@ namespace kt class Plugin : public KParts::Plugin { Q_OBJECT - TQ_OBJECT + public: /** * Constructor, set the name of the plugin, the name and e-mail of the author and diff --git a/libktorrent/interfaces/torrentfileinterface.h b/libktorrent/interfaces/torrentfileinterface.h index bf30f1e..9795964 100644 --- a/libktorrent/interfaces/torrentfileinterface.h +++ b/libktorrent/interfaces/torrentfileinterface.h @@ -44,7 +44,7 @@ namespace kt class TorrentFileInterface : public TQObject { Q_OBJECT - TQ_OBJECT + public: /** * Constructor, set the path and size. diff --git a/libktorrent/interfaces/torrentinterface.h b/libktorrent/interfaces/torrentinterface.h index 4ab3c74..8b21854 100644 --- a/libktorrent/interfaces/torrentinterface.h +++ b/libktorrent/interfaces/torrentinterface.h @@ -182,7 +182,7 @@ namespace kt class TorrentInterface : public TQObject { Q_OBJECT - TQ_OBJECT + public: TorrentInterface(); virtual ~TorrentInterface(); |