diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:08:14 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:08:14 -0600 |
commit | 6f114e7935d43127c6c0269532fb2674cee9a4f5 (patch) | |
tree | 222adc3ae4db93c92937de3d09195aca96ae99ce /kopete/protocols/jabber/libiris/cutestuff | |
parent | a484f7e6af77fe25155e9be30a4166c6f479e46d (diff) | |
download | tdenetwork-6f114e7935d43127c6c0269532fb2674cee9a4f5.tar.gz tdenetwork-6f114e7935d43127c6c0269532fb2674cee9a4f5.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kopete/protocols/jabber/libiris/cutestuff')
10 files changed, 15 insertions, 15 deletions
diff --git a/kopete/protocols/jabber/libiris/cutestuff/network/bsocket.h b/kopete/protocols/jabber/libiris/cutestuff/network/bsocket.h index 25e33c04..38aa4912 100644 --- a/kopete/protocols/jabber/libiris/cutestuff/network/bsocket.h +++ b/kopete/protocols/jabber/libiris/cutestuff/network/bsocket.h @@ -30,7 +30,7 @@ class BSocket : public ByteStream { Q_OBJECT - TQ_OBJECT + public: enum Error { ErrConnectionRefused = ErrCustom, ErrHostNotFound }; enum State { Idle, HostLookup, Connecting, Connected, Closing }; diff --git a/kopete/protocols/jabber/libiris/cutestuff/network/httpconnect.h b/kopete/protocols/jabber/libiris/cutestuff/network/httpconnect.h index 6c73acd5..148356e8 100644 --- a/kopete/protocols/jabber/libiris/cutestuff/network/httpconnect.h +++ b/kopete/protocols/jabber/libiris/cutestuff/network/httpconnect.h @@ -28,7 +28,7 @@ class HttpConnect : public ByteStream { Q_OBJECT - TQ_OBJECT + public: enum Error { ErrConnectionRefused = ErrCustom, ErrHostNotFound, ErrProxyConnect, ErrProxyNeg, ErrProxyAuth }; HttpConnect(TQObject *parent=0); diff --git a/kopete/protocols/jabber/libiris/cutestuff/network/httppoll.h b/kopete/protocols/jabber/libiris/cutestuff/network/httppoll.h index a4c542f6..088d5c33 100644 --- a/kopete/protocols/jabber/libiris/cutestuff/network/httppoll.h +++ b/kopete/protocols/jabber/libiris/cutestuff/network/httppoll.h @@ -28,7 +28,7 @@ class HttpPoll : public ByteStream { Q_OBJECT - TQ_OBJECT + public: enum Error { ErrConnectionRefused = ErrCustom, ErrHostNotFound, ErrProxyConnect, ErrProxyNeg, ErrProxyAuth }; HttpPoll(TQObject *parent=0); @@ -71,7 +71,7 @@ private: class HttpProxyPost : public TQObject { Q_OBJECT - TQ_OBJECT + public: enum Error { ErrConnectionRefused, ErrHostNotFound, ErrSocket, ErrProxyConnect, ErrProxyNeg, ErrProxyAuth }; HttpProxyPost(TQObject *parent=0); diff --git a/kopete/protocols/jabber/libiris/cutestuff/network/ndns.h b/kopete/protocols/jabber/libiris/cutestuff/network/ndns.h index 3b000d9b..01907ccd 100644 --- a/kopete/protocols/jabber/libiris/cutestuff/network/ndns.h +++ b/kopete/protocols/jabber/libiris/cutestuff/network/ndns.h @@ -35,7 +35,7 @@ class NDnsManager; class NDns : public TQObject { Q_OBJECT - TQ_OBJECT + public: NDns(TQObject *parent=0); ~NDns(); @@ -60,7 +60,7 @@ private: class NDnsManager : public TQObject { Q_OBJECT - TQ_OBJECT + public: ~NDnsManager(); class Item; diff --git a/kopete/protocols/jabber/libiris/cutestuff/network/servsock.h b/kopete/protocols/jabber/libiris/cutestuff/network/servsock.h index fe63abef..c77b57c8 100644 --- a/kopete/protocols/jabber/libiris/cutestuff/network/servsock.h +++ b/kopete/protocols/jabber/libiris/cutestuff/network/servsock.h @@ -28,7 +28,7 @@ class ServSock : public TQObject { Q_OBJECT - TQ_OBJECT + public: ServSock(TQObject *parent=0); ~ServSock(); @@ -53,7 +53,7 @@ private: class ServSockSignal : public TQServerSocket { Q_OBJECT - TQ_OBJECT + public: ServSockSignal(int port); diff --git a/kopete/protocols/jabber/libiris/cutestuff/network/socks.h b/kopete/protocols/jabber/libiris/cutestuff/network/socks.h index 14c2a176..3205ceb2 100644 --- a/kopete/protocols/jabber/libiris/cutestuff/network/socks.h +++ b/kopete/protocols/jabber/libiris/cutestuff/network/socks.h @@ -32,7 +32,7 @@ class SocksServer; class SocksUDP : public TQObject { Q_OBJECT - TQ_OBJECT + public: ~SocksUDP(); @@ -56,7 +56,7 @@ private: class SocksClient : public ByteStream { Q_OBJECT - TQ_OBJECT + public: enum Error { ErrConnectionRefused = ErrCustom, ErrHostNotFound, ErrProxyConnect, ErrProxyNeg, ErrProxyAuth }; enum Method { AuthNone=0x0001, AuthUsername=0x0002 }; @@ -130,7 +130,7 @@ private: class SocksServer : public TQObject { Q_OBJECT - TQ_OBJECT + public: SocksServer(TQObject *parent=0); ~SocksServer(); diff --git a/kopete/protocols/jabber/libiris/cutestuff/network/srvresolver.h b/kopete/protocols/jabber/libiris/cutestuff/network/srvresolver.h index 8ef15684..669bcf80 100644 --- a/kopete/protocols/jabber/libiris/cutestuff/network/srvresolver.h +++ b/kopete/protocols/jabber/libiris/cutestuff/network/srvresolver.h @@ -29,7 +29,7 @@ class SrvResolver : public TQObject { Q_OBJECT - TQ_OBJECT + public: SrvResolver(TQObject *parent=0); ~SrvResolver(); diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/bytestream.h b/kopete/protocols/jabber/libiris/cutestuff/util/bytestream.h index b72fad78..0ffab15b 100644 --- a/kopete/protocols/jabber/libiris/cutestuff/util/bytestream.h +++ b/kopete/protocols/jabber/libiris/cutestuff/util/bytestream.h @@ -30,7 +30,7 @@ class ByteStream : public TQObject { Q_OBJECT - TQ_OBJECT + public: enum Error { ErrRead, ErrWrite, ErrCustom = 10 }; ByteStream(TQObject *parent=0); diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/safedelete.h b/kopete/protocols/jabber/libiris/cutestuff/util/safedelete.h index 01c47a32..ce7a789a 100644 --- a/kopete/protocols/jabber/libiris/cutestuff/util/safedelete.h +++ b/kopete/protocols/jabber/libiris/cutestuff/util/safedelete.h @@ -41,7 +41,7 @@ private: class SafeDeleteLater : public TQObject { Q_OBJECT - TQ_OBJECT + public: static SafeDeleteLater *ensureExists(); void deleteItLater(TQObject *o); diff --git a/kopete/protocols/jabber/libiris/cutestuff/util/showtextdlg.h b/kopete/protocols/jabber/libiris/cutestuff/util/showtextdlg.h index 8c84be12..f8eb7095 100644 --- a/kopete/protocols/jabber/libiris/cutestuff/util/showtextdlg.h +++ b/kopete/protocols/jabber/libiris/cutestuff/util/showtextdlg.h @@ -26,7 +26,7 @@ class ShowTextDlg : public TQDialog { Q_OBJECT - TQ_OBJECT + public: ShowTextDlg(const TQString &fname, bool rich=FALSE, TQWidget *parent=0, const char *name=0); }; |