summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/serialport/doc/terminal.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/serialport/doc/terminal.qdoc b/examples/serialport/doc/terminal.qdoc
index 16f12feb..d9b2d8dd 100644
--- a/examples/serialport/doc/terminal.qdoc
+++ b/examples/serialport/doc/terminal.qdoc
@@ -91,7 +91,7 @@
\snippet terminal/mainwindow.cpp 1
The only QSerialPort signal invoked in this example is
- \l{QIODevice::readyRead()}{readyRead()}, which shows that new data has been
+ \l{QIODevice::}{readyRead()}, which shows that new data has been
received and hence available:
\dots
@@ -127,7 +127,7 @@
\l{terminal/console.cpp}{Console} widget to the serial port.
When the serial port receives new data, the signal
- \l{QTcpSocket::readyRead()}{readyRead()} is emitted, and that signal is
+ \l{QIODevice::}{readyRead()} is emitted, and that signal is
connected to the \c MainWindow::readData() slot:
\snippet terminal/mainwindow.cpp 7