Doc: fix links to renamed network examples

Pick-to: 6.5
Change-Id: I8790bb660070a092e268294b5640c6d5af41deb0
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
This commit is contained in:
Volker Hilsheimer 2023-03-01 11:59:51 +01:00
parent 1895948bb9
commit a02fb41c8e
7 changed files with 10 additions and 11 deletions

View File

@ -23,7 +23,7 @@
large set of problems, including synchronous network I/O and large set of problems, including synchronous network I/O and
database access, where the user interface must remain responsive database access, where the user interface must remain responsive
while some heavy operation is taking place. The \l while some heavy operation is taking place. The \l
{Blocking Fortune Client Example} shows the same principle at {Blocking Fortune Client} example shows the same principle at
work in a TCP client. work in a TCP client.
The Mandelbrot application supports zooming and scrolling using The Mandelbrot application supports zooming and scrolling using

View File

@ -171,5 +171,5 @@
Here, we simply display the fortune we received as the argument. Here, we simply display the fortune we received as the argument.
\sa {Fortune Client Example}, {Fortune Server Example} \sa {Fortune Client}, {Fortune Server}
*/ */

View File

@ -40,7 +40,7 @@
\endlist \endlist
In this example, we will demonstrate the asynchronous approach. The In this example, we will demonstrate the asynchronous approach. The
\l{blockingfortuneclient}{Blocking Fortune Client Example} \l{blockingfortuneclient}{Blocking Fortune Client} example
illustrates the synchronous approach. illustrates the synchronous approach.
Our class contains some data and a few private slots: Our class contains some data and a few private slots:
@ -134,5 +134,5 @@
After a successful read transaction, we call QLabel::setText() to display After a successful read transaction, we call QLabel::setText() to display
the fortune. the fortune.
\sa {Fortune Server Example}, {Blocking Fortune Client Example} \sa {Fortune Server}, {Blocking Fortune Client}
*/ */

View File

@ -11,7 +11,7 @@
This example is intended to be run alongside the This example is intended to be run alongside the
\l{fortuneclient}{Fortune Client} example or the \l{fortuneclient}{Fortune Client} example or the
\l{blockingfortuneclient}{Blocking Fortune Client Example}. \l{blockingfortuneclient}{Blocking Fortune Client} example.
\image fortuneserver-example.png Screenshot of the Fortune Server example \image fortuneserver-example.png Screenshot of the Fortune Server example
@ -71,5 +71,5 @@
will then close, which in turn will cause QObject::deleteLater() to delete will then close, which in turn will cause QObject::deleteLater() to delete
it. it.
\sa {Fortune Client Example}, {Threaded Fortune Server Example} \sa {Fortune Client}, {Threaded Fortune Server}
*/ */

View File

@ -81,6 +81,5 @@
the socket has disconnected. Because we are running in a separate thread, the socket has disconnected. Because we are running in a separate thread,
the GUI will remain responsive. the GUI will remain responsive.
\sa {Fortune Server Example}, {Fortune Client Example}, {Blocking Fortune \sa {Fortune Server}, {Fortune Client}, {Blocking Fortune Client}
Client Example}
*/ */

View File

@ -43,7 +43,7 @@
use waitForNewConnection(), which blocks until either a use waitForNewConnection(), which blocks until either a
connection is available or a timeout expires. connection is available or a timeout expires.
\sa QTcpSocket, {Fortune Server Example}, {Threaded Fortune Server Example}, \sa QTcpSocket, {Fortune Server}, {Threaded Fortune Server},
{Loopback Example}, {Torrent Example} {Loopback Example}, {Torrent Example}
*/ */

View File

@ -23,8 +23,8 @@
\note TCP sockets cannot be opened in QIODevice::Unbuffered mode. \note TCP sockets cannot be opened in QIODevice::Unbuffered mode.
\sa QTcpServer, QUdpSocket, QNetworkAccessManager, \sa QTcpServer, QUdpSocket, QNetworkAccessManager,
{Fortune Server Example}, {Fortune Client Example}, {Fortune Server}, {Fortune Client},
{Threaded Fortune Server Example}, {Blocking Fortune Client Example}, {Threaded Fortune Server}, {Blocking Fortune Client},
{Loopback Example}, {Torrent Example} {Loopback Example}, {Torrent Example}
*/ */