summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@qt.io>2018-01-12 13:13:47 +0100
committerTopi Reiniƶ <topi.reinio@qt.io>2018-01-12 14:23:02 +0000
commit601da46674a7cca9099565b2dac6ca66dad0b82b (patch)
tree40bd9f2581251ad776c14ec606d2fc24df138335
parent692a6db62b6c54f518d9e5b4f1f8f134fb3719fc (diff)
downloadqtserialport-601da46674a7cca9099565b2dac6ca66dad0b82b.tar.gz
Doc: Move extra comments into the QDoc comment block
QDoc requires the function body to follow immediately after the /*! ... */ comment. Change-Id: I385bdfe16003e29950352a83ddb13fe75badcc5f Reviewed-by: Martin Smith <martin.smith@qt.io>
-rw-r--r--src/serialport/qserialport.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/serialport/qserialport.cpp b/src/serialport/qserialport.cpp
index 3b88736..a53212f 100644
--- a/src/serialport/qserialport.cpp
+++ b/src/serialport/qserialport.cpp
@@ -1396,10 +1396,13 @@ bool QSerialPort::isBreakEnabled() const
/*!
\reimp
+
+ \omit
+ This function does not really read anything, as we use QIODevicePrivate's
+ buffer. The buffer will be read inside of QIODevice before this
+ method will be called.
+ \endomit
*/
-// This function does not really read anything, as we use QIODevicePrivate's
-// buffer. The buffer will be read inside of QIODevice before this
-// method will be called.
qint64 QSerialPort::readData(char *data, qint64 maxSize)
{
Q_UNUSED(data);