summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLaszlo Papp <lpapp@kde.org>2013-02-27 21:58:03 +0000
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-02-28 08:42:03 +0100
commit6962b6cc448ca0943a9ecc9775ba350aab2c9793 (patch)
treebf6889311b106f2e32f6bd38927e2874dcacb6ec /src
parente3191366fe3b44c486894ab894b1c23335942348 (diff)
Replace the deprecated commands (\i, \o, \bold) with the new ones
See the following page for details: http://doc-snapshot.qt-project.org/qt5-stable/qdoc/27-qdoc-commands-alphabetical.html Change-Id: I405deea5cf065075907ac7830e92bb064a1c72d0 Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/serialport/doc/src/index.qdoc8
-rw-r--r--src/serialport/doc/src/intro.qdoc42
-rw-r--r--src/serialport/qserialport.cpp42
3 files changed, 46 insertions, 46 deletions
diff --git a/src/serialport/doc/src/index.qdoc b/src/serialport/doc/src/index.qdoc
index 0d78be50..f1706e75 100644
--- a/src/serialport/doc/src/index.qdoc
+++ b/src/serialport/doc/src/index.qdoc
@@ -49,10 +49,10 @@
Table of contents:
\list
- \o \l {Introduction}
- \o \l {Get source}
- \o \l {Building and usage}
- \o \l {Examples}
+ \li \l {Introduction}
+ \li \l {Get source}
+ \li \l {Building and usage}
+ \li \l {Examples}
\endlist
\section1 C++ Classes
diff --git a/src/serialport/doc/src/intro.qdoc b/src/serialport/doc/src/intro.qdoc
index a1ccf0f0..d89a3ce6 100644
--- a/src/serialport/doc/src/intro.qdoc
+++ b/src/serialport/doc/src/intro.qdoc
@@ -45,33 +45,33 @@
\table
\header
- \o Platform
- \o Support state
- \o Notes
+ \li Platform
+ \li Support state
+ \li Notes
\row
- \o Windows x86/x64 NT based (2K, XP, Vista, 7, 8)
- \o Complete support (Tier 1).
- \o Support expected for Windows 8, but has not yet been tested.
+ \li Windows x86/x64 NT based (2K, XP, Vista, 7, 8)
+ \li Complete support (Tier 1).
+ \li Support expected for Windows 8, but has not yet been tested.
\row
- \o Windows CE
- \o Partial support (Not Tier 1).
- \o Tested only with platforms 5 and 6 by using the emulator.
+ \li Windows CE
+ \li Partial support (Not Tier 1).
+ \li Tested only with platforms 5 and 6 by using the emulator.
\row
- \o Symbian
- \o Partial support, and only for legacy Qt4 (Not Tier 1).
- \o The implementation is not complete and further support in doubt.
+ \li Symbian
+ \li Partial support, and only for legacy Qt4 (Not Tier 1).
+ \li The implementation is not complete and further support in doubt.
\row
- \o Gnu/Linux
- \o Complete support (Tier 1).
- \o
+ \li Gnu/Linux
+ \li Complete support (Tier 1).
+ \li
\row
- \o Mac OSX
- \o Complete support (Tier 1).
- \o
+ \li Mac OSX
+ \li Complete support (Tier 1).
+ \li
\row
- \o Other *nix
- \o Complete support (Tier 1).
- \o All POSIX-compatible.
+ \li Other *nix
+ \li Complete support (Tier 1).
+ \li All POSIX-compatible.
\endtable
*/
diff --git a/src/serialport/qserialport.cpp b/src/serialport/qserialport.cpp
index 61042910..82652208 100644
--- a/src/serialport/qserialport.cpp
+++ b/src/serialport/qserialport.cpp
@@ -107,15 +107,15 @@ int QSerialPortPrivateData::timeoutValue(int msecs, int elapsed)
listed below:
\list
- \o Provides only common functionality which includes
+ \li Provides only common functionality which includes
configuring, I/O data stream, get and set control signals of the
RS-232 pinouts.
- \o Does not support for terminal features as echo, control CR/LF and so
+ \li Does not support for terminal features as echo, control CR/LF and so
forth.
- \o Always works in binary mode.
- \o Does not support the native ability for configuring timeouts
+ \li Always works in binary mode.
+ \li Does not support the native ability for configuring timeouts
and delays while reading.
- \o Does not provide tracking and notification when the state
+ \li Does not provide tracking and notification when the state
of RS-232 pinout signals is changed.
\endlist
@@ -181,10 +181,10 @@ int QSerialPortPrivateData::timeoutValue(int msecs, int elapsed)
used to implement blocking serial ports:
\list
- \o waitForReadyRead() blocks until new data is available for
+ \li waitForReadyRead() blocks until new data is available for
reading.
- \o waitForBytesWritten() blocks until one payload of data has been
+ \li waitForBytesWritten() blocks until one payload of data has been
written to the serial port.
\endlist
@@ -457,31 +457,31 @@ void QSerialPort::setPort(const QSerialPortInfo &serialPortInfo)
platform specific:
\table
\header
- \o Platform
- \o Brief Description
+ \li Platform
+ \li Brief Description
\row
- \o Windows
- \o Removes the prefix "\\\\.\\" from the system location
+ \li Windows
+ \li Removes the prefix "\\\\.\\" from the system location
and returns the remainder of the string.
\row
- \o Windows CE
- \o Removes the postfix ":" from the system location
+ \li Windows CE
+ \li Removes the postfix ":" from the system location
and returns the remainder of the string.
\row
- \o Symbian
- \o Returns the system location as it is,
+ \li Symbian
+ \li Returns the system location as it is,
as it is equivalent to the port name.
\row
- \o GNU/Linux
- \o Removes the prefix "/dev/" from the system location
+ \li GNU/Linux
+ \li Removes the prefix "/dev/" from the system location
and returns the remainder of the string.
\row
- \o Mac OSX
- \o Removes the prefix "/dev/cu." and "/dev/tty." from the
+ \li Mac OSX
+ \li Removes the prefix "/dev/cu." and "/dev/tty." from the
system location and returns the remainder of the string.
\row
- \o Other *nix
- \o The same as for GNU/Linux.
+ \li Other *nix
+ \li The same as for GNU/Linux.
\endtable
\sa setPort(), QSerialPortInfo::portName()