diff options
Diffstat (limited to 'libtdegames/kgame/kmessageio.h')
-rw-r--r-- | libtdegames/kgame/kmessageio.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libtdegames/kgame/kmessageio.h b/libtdegames/kgame/kmessageio.h index 0a8d4172..42acaf41 100644 --- a/libtdegames/kgame/kmessageio.h +++ b/libtdegames/kgame/kmessageio.h @@ -55,7 +55,7 @@ class TDEProcess; class KMessageIO : public TQObject { - Q_OBJECT + TQ_OBJECT public: @@ -169,7 +169,7 @@ protected: class KMessageSocket : public KMessageIO { - Q_OBJECT + TQ_OBJECT public: @@ -246,7 +246,7 @@ public: virtual TQString peerName () const; /** - @return TRUE as this is a network IO. + @return true as this is a network IO. */ bool isNetwork() const { return true; } @@ -296,7 +296,7 @@ protected: class KMessageDirect : public KMessageIO { - Q_OBJECT + TQ_OBJECT public: @@ -322,7 +322,7 @@ public: /** - @return FALSE as this is no network IO. + @return false as this is no network IO. */ bool isNetwork() const { return false; } @@ -350,7 +350,7 @@ protected: class KMessageProcess : public KMessageIO { - Q_OBJECT + TQ_OBJECT public: @@ -361,7 +361,7 @@ class KMessageProcess : public KMessageIO void writeToProcess(); /** - @return FALSE as this is no network IO. + @return false as this is no network IO. */ bool isNetwork() const { return false; } @@ -389,7 +389,7 @@ class KMessageProcess : public KMessageIO class KMessageFilePipe : public KMessageIO { - Q_OBJECT + TQ_OBJECT public: @@ -400,7 +400,7 @@ class KMessageFilePipe : public KMessageIO void exec(); /** - @return FALSE as this is no network IO. + @return false as this is no network IO. */ bool isNetwork() const { return false; } |