summaryrefslogtreecommitdiffstats
path: root/src/widgets/widgets/qtextedit.cpp
diff options
context:
space:
mode:
authorJerome Pasion <jerome.pasion@digia.com>2013-10-02 16:51:05 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-08 00:46:27 +0200
commit4533cc994484a2308297e64e99af005fb4dca065 (patch)
treebc66283d11cdad100a1aec03f4e1d86bedc9a79e /src/widgets/widgets/qtextedit.cpp
parent50dd0232b61d8ea3fb9aab18972c6e19678656e6 (diff)
Doc: Adding mark-up to boolean default values.
Default values should have mark-up to denote that they are code. This commit changes: -"property is true" to "property is \c true". -"Returns true" to "Returns \c true". -"property is false" to "property is \c false". -"returns true" to "returns \c true". -"returns false" to "returns \c false". src/3rdparty and non-documentation instances were ignored. Task-number: QTBUG-33360 Change-Id: Ie87eaa57af947caa1230602b61c5c46292a4cf4e Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/widgets/widgets/qtextedit.cpp')
-rw-r--r--src/widgets/widgets/qtextedit.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/widgets/widgets/qtextedit.cpp b/src/widgets/widgets/qtextedit.cpp
index 4e0c682493..0f61eb487f 100644
--- a/src/widgets/widgets/qtextedit.cpp
+++ b/src/widgets/widgets/qtextedit.cpp
@@ -664,7 +664,7 @@ int QTextEdit::fontWeight() const
}
/*!
- Returns true if the font of the current format is underlined; otherwise returns
+ Returns \c true if the font of the current format is underlined; otherwise returns
false.
\sa setFontUnderline()
@@ -676,7 +676,7 @@ bool QTextEdit::fontUnderline() const
}
/*!
- Returns true if the font of the current format is italic; otherwise returns
+ Returns \c true if the font of the current format is italic; otherwise returns
false.
\sa setFontItalic()
@@ -1906,11 +1906,11 @@ QString QTextEdit::anchorAt(const QPoint& pos) const
As with many text editors, the text editor widget can be configured
to insert or overwrite existing text with new text entered by the user.
- If this property is true, existing text is overwritten, character-for-character
+ If this property is \c true, existing text is overwritten, character-for-character
by new text; otherwise, text is inserted at the cursor position, displacing
existing text.
- By default, this property is false (new text does not overwrite existing text).
+ By default, this property is \c false (new text does not overwrite existing text).
*/
bool QTextEdit::overwriteMode() const
@@ -2054,7 +2054,7 @@ QMimeData *QTextEdit::createMimeDataFromSelection() const
}
/*!
- This function returns true if the contents of the MIME data object, specified
+ This function returns \c true if the contents of the MIME data object, specified
by \a source, can be decoded and inserted into the document. It is called
for example when during a drag operation the mouse enters this widget and it
is necessary to determine whether it is possible to accept the drag and drop
@@ -2445,8 +2445,8 @@ void QTextEdit::setWordWrapMode(QTextOption::WrapMode mode)
/*!
Finds the next occurrence of the string, \a exp, using the given
- \a options. Returns true if \a exp was found and changes the
- cursor to select the match; otherwise returns false.
+ \a options. Returns \c true if \a exp was found and changes the
+ cursor to select the match; otherwise returns \c false.
*/
bool QTextEdit::find(const QString &exp, QTextDocument::FindFlags options)
{