summaryrefslogtreecommitdiffstats
path: root/src/widgets/widgets/qtextedit.cpp
diff options
context:
space:
mode:
authorMarius Storm-Olsen <marius.storm-olsen@nokia.com>2012-05-10 13:10:23 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-11 01:42:02 +0200
commitad97aba452ed7d3dbd3c9d437c59c14b2ae0661b (patch)
tree2a37426bc8e29f27d3b3a486693b484b2caa069c /src/widgets/widgets/qtextedit.cpp
parent87d21127de4a361c7e76ba91a0ea336bbed32853 (diff)
Doc: Fix \sa usage
Ensure comma between elements (757 missing), single space and curly- braces around title elements, etc. Change-Id: Id16c3fda7fc47a12a0682f8720214f4990609a97 Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com> Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'src/widgets/widgets/qtextedit.cpp')
-rw-r--r--src/widgets/widgets/qtextedit.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/widgets/widgets/qtextedit.cpp b/src/widgets/widgets/qtextedit.cpp
index 7a7b977b89..3dbd24705b 100644
--- a/src/widgets/widgets/qtextedit.cpp
+++ b/src/widgets/widgets/qtextedit.cpp
@@ -613,7 +613,7 @@ QTextEdit::~QTextEdit()
/*!
Returns the point size of the font of the current format.
- \sa setFontFamily() setCurrentFont() setFontPointSize()
+ \sa setFontFamily(), setCurrentFont(), setFontPointSize()
*/
qreal QTextEdit::fontPointSize() const
{
@@ -624,7 +624,7 @@ qreal QTextEdit::fontPointSize() const
/*!
Returns the font family of the current format.
- \sa setFontFamily() setCurrentFont() setFontPointSize()
+ \sa setFontFamily(), setCurrentFont(), setFontPointSize()
*/
QString QTextEdit::fontFamily() const
{
@@ -635,7 +635,7 @@ QString QTextEdit::fontFamily() const
/*!
Returns the font weight of the current format.
- \sa setFontWeight() setCurrentFont() setFontPointSize() QFont::Weight
+ \sa setFontWeight(), setCurrentFont(), setFontPointSize(), QFont::Weight
*/
int QTextEdit::fontWeight() const
{
@@ -694,7 +694,7 @@ QColor QTextEdit::textBackgroundColor() const
/*!
Returns the font of the current format.
- \sa setCurrentFont() setFontFamily() setFontPointSize()
+ \sa setCurrentFont(), setFontFamily(), setFontPointSize()
*/
QFont QTextEdit::currentFont() const
{
@@ -782,7 +782,7 @@ QTextCursor QTextEdit::textCursor() const
/*!
Sets the font family of the current format to \a fontFamily.
- \sa fontFamily() setCurrentFont()
+ \sa fontFamily(), setCurrentFont()
*/
void QTextEdit::setFontFamily(const QString &fontFamily)
{
@@ -797,7 +797,7 @@ void QTextEdit::setFontFamily(const QString &fontFamily)
Note that if \a s is zero or negative, the behavior of this
function is not defined.
- \sa fontPointSize() setCurrentFont() setFontFamily()
+ \sa fontPointSize(), setCurrentFont(), setFontFamily()
*/
void QTextEdit::setFontPointSize(qreal s)
{
@@ -877,7 +877,7 @@ void QTextEdit::setTextBackgroundColor(const QColor &c)
/*!
Sets the font of the current format to \a f.
- \sa currentFont() setFontPointSize() setFontFamily()
+ \sa currentFont(), setFontPointSize(), setFontFamily()
*/
void QTextEdit::setCurrentFont(const QFont &f)
{
@@ -935,7 +935,7 @@ void QTextEdit::redo()
If there is no selected text nothing happens.
- \sa copy() paste()
+ \sa copy(), paste()
*/
void QTextEdit::cut()
@@ -967,7 +967,7 @@ void QTextEdit::copy()
virtual canInsertFromMimeData() and insertFromMimeData()
functions.
- \sa cut() copy()
+ \sa cut(), copy()
*/
void QTextEdit::paste()
@@ -982,7 +982,7 @@ void QTextEdit::paste()
Note that the undo/redo history is cleared by this function.
- \sa cut() setPlainText() setHtml()
+ \sa cut(), setPlainText(), setHtml()
*/
void QTextEdit::clear()
{
@@ -995,7 +995,7 @@ void QTextEdit::clear()
/*!
Selects all text.
- \sa copy() cut() textCursor()
+ \sa copy(), cut(), textCursor()
*/
void QTextEdit::selectAll()
{