summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorhjk <qthjk@ovi.com>2012-11-30 16:09:46 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-30 23:56:06 +0100
commit4902d381bdf8ffc0a8fd0e30e08f1f8a83ea7b70 (patch)
treef675b4127a41763363cfdb9f710c807772da3d83 /src
parent1164c6f6ca9af694296325d9f485e3d0212f8e39 (diff)
Replace two \returns markers by "The function returns"
Change-Id: I101310f6bd9bddf0ee9d06a81b9fef805313a015 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/io/qwinoverlappedionotifier.cpp4
-rw-r--r--src/gui/text/qcssparser.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/io/qwinoverlappedionotifier.cpp b/src/corelib/io/qwinoverlappedionotifier.cpp
index 8fa3648987..a03585c632 100644
--- a/src/corelib/io/qwinoverlappedionotifier.cpp
+++ b/src/corelib/io/qwinoverlappedionotifier.cpp
@@ -211,8 +211,8 @@ void QWinOverlappedIoNotifier::setEnabled(bool enabled)
/*!
* Wait synchronously for the notified signal.
*
- * \returns true, if the notified signal was emitted for the I/O operation
- * that corresponds to the OVERLAPPED object.
+ * The function returns true if the notified signal was emitted for
+ * the I/O operation that corresponds to the OVERLAPPED object.
*/
bool QWinOverlappedIoNotifier::waitForNotified(int msecs, OVERLAPPED *overlapped)
{
diff --git a/src/gui/text/qcssparser.cpp b/src/gui/text/qcssparser.cpp
index 885244d9a7..b40bd7a63f 100644
--- a/src/gui/text/qcssparser.cpp
+++ b/src/gui/text/qcssparser.cpp
@@ -1128,7 +1128,7 @@ static bool setFontWeightFromValue(const QCss::Value &value, QFont *font)
/** \internal
* parse the font family from the values (starting from index \a start)
* and set it the \a font
- * \returns true if a family was extracted.
+ * The function returns true if a family was extracted.
*/
static bool setFontFamilyFromValues(const QVector<QCss::Value> &values, QFont *font, int start = 0)
{