From e6077c30d14e9d662e8843c554db86c0d366d0b6 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 6 Jun 2024 13:44:12 +0900 Subject: Rename str nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/clientserver-example.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/clientserver-example.html') diff --git a/doc/html/clientserver-example.html b/doc/html/clientserver-example.html index f5623b341..b66a1f1e4 100644 --- a/doc/html/clientserver-example.html +++ b/doc/html/clientserver-example.html @@ -92,14 +92,14 @@ public: } signals: - void logText( const TQString& ); + void logText( const TQString& ); private slots: void readClient() { TQTextStream ts( this ); while ( canReadLine() ) { - TQString str = ts.readLine(); + TQString str = ts.readLine(); emit logText( tr("Read: '%1'\n").arg(str) ); ts << line << ": " << str << endl; @@ -159,7 +159,7 @@ public: { SimpleServer *server = new SimpleServer( this ); - TQString itext = tr( + TQString itext = tr( "This is a small server example.\n" "Connect with the client now." ); @@ -182,8 +182,8 @@ private slots: void newConnect( ClientSocket *s ) { infoText->append( tr("New connection\n") ); - connect( s, TQ_SIGNAL(logText(const TQString&)), - infoText, TQ_SLOT(append(const TQString&)) ); + connect( s, TQ_SIGNAL(logText(const TQString&)), + infoText, TQ_SLOT(append(const TQString&)) ); connect( s, TQ_SIGNAL(connectionClosed()), TQ_SLOT(connectionClosed()) ); } @@ -237,7 +237,7 @@ class Client : public TQVBox { TQ_OBJECT public: - Client( const TQString &host, TQ_UINT16 port ) + Client( const TQString &host, TQ_UINT16 port ) { // GUI layout infoText = new TQTextView( this ); -- cgit v1.2.3