summaryrefslogtreecommitdiffstats
path: root/src/widgets/widgets/qtextedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/widgets/qtextedit.cpp')
-rw-r--r--src/widgets/widgets/qtextedit.cpp15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/widgets/widgets/qtextedit.cpp b/src/widgets/widgets/qtextedit.cpp
index c9de35a261..0ab76db5d3 100644
--- a/src/widgets/widgets/qtextedit.cpp
+++ b/src/widgets/widgets/qtextedit.cpp
@@ -730,15 +730,13 @@ Qt::Alignment QTextEdit::alignment() const
}
/*!
- Makes \a document the new document of the text editor.
+ \property QTextEdit::document
+ \brief the underlying document of the text editor.
\note The editor \e{does not take ownership of the document} unless it
is the document's parent object. The parent object of the provided document
- remains the owner of the object.
-
- The editor does not delete the current document, even if it is a child of the editor.
-
- \sa document()
+ remains the owner of the object. The editor does not delete any previously
+ assigned document, even if it is a child of the editor.
*/
void QTextEdit::setDocument(QTextDocument *document)
{
@@ -748,11 +746,6 @@ void QTextEdit::setDocument(QTextDocument *document)
d->relayoutDocument();
}
-/*!
- Returns a pointer to the underlying document.
-
- \sa setDocument()
-*/
QTextDocument *QTextEdit::document() const
{
Q_D(const QTextEdit);