diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-13 17:43:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-13 17:43:39 -0600 |
commit | 359640943bcf155faa9a067dde9e00a123276290 (patch) | |
tree | fb3d55ea5e18949042fb0064123fb73d2b1eb932 /doc/html/clientserver-example.html | |
parent | a829bcdc533e154000803d517200d32fe762e85c (diff) | |
download | tqt3-359640943bcf155faa9a067dde9e00a123276290.tar.gz tqt3-359640943bcf155faa9a067dde9e00a123276290.zip |
Automated update from Qt3
Diffstat (limited to 'doc/html/clientserver-example.html')
-rw-r--r-- | doc/html/clientserver-example.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/html/clientserver-example.html b/doc/html/clientserver-example.html index 13552bf94..5753ac9a2 100644 --- a/doc/html/clientserver-example.html +++ b/doc/html/clientserver-example.html @@ -74,7 +74,7 @@ specified. You can send single lines to the server. */ class ClientSocket : public <a href="ntqsocket.html">TQSocket</a> { - <a href="metaobjects.html#Q_OBJECT">Q_OBJECT</a> + <a href="metaobjects.html#TQ_OBJECT">TQ_OBJECT</a> public: ClientSocket( int sock, TQObject *parent=0, const char *name=0 ) : <a href="ntqsocket.html">TQSocket</a>( parent, name ) @@ -121,7 +121,7 @@ private: */ class SimpleServer : public <a href="ntqserversocket.html">TQServerSocket</a> { - Q_OBJECT + TQ_OBJECT public: SimpleServer( <a href="ntqobject.html">TQObject</a>* parent=0 ) : <a href="ntqserversocket.html">TQServerSocket</a>( 4242, 1, parent ) @@ -153,7 +153,7 @@ signals: */ class ServerInfo : public <a href="ntqvbox.html">TQVBox</a> { - Q_OBJECT + TQ_OBJECT public: ServerInfo() { @@ -235,7 +235,7 @@ int main( int argc, char** argv ) class Client : public <a href="ntqvbox.html">TQVBox</a> { - Q_OBJECT + TQ_OBJECT public: Client( const <a href="ntqstring.html">TQString</a> &host, Q_UINT16 port ) { |