diff options
author | Martin Smith <msmith@trolltech.com> | 2009-06-22 07:43:37 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-06-22 07:43:37 (GMT) |
commit | fe48ca11f7da7200c052a7825ad4d46319b13cc5 (patch) | |
tree | 5ea06a9fc45a5fb64c5683f561952b87bb8c09d9 | |
parent | 71703cea94f8ecfd540afa2890feee672572e225 (diff) | |
download | Qt-fe48ca11f7da7200c052a7825ad4d46319b13cc5.zip Qt-fe48ca11f7da7200c052a7825ad4d46319b13cc5.tar.gz Qt-fe48ca11f7da7200c052a7825ad4d46319b13cc5.tar.bz2 |
doc: Fixed typo.
Task-number: 256287
-rw-r--r-- | src/gui/widgets/qplaintextedit.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/gui/widgets/qplaintextedit.cpp b/src/gui/widgets/qplaintextedit.cpp index efacd00..4977b31 100644 --- a/src/gui/widgets/qplaintextedit.cpp +++ b/src/gui/widgets/qplaintextedit.cpp @@ -1029,15 +1029,14 @@ void QPlainTextEditPrivate::ensureViewportLayouted() \section1 Using QPlainTextEdit as a Display Widget - The text is set or replaced using setPlainText() which deletes any - existing text and replaces it with the text passed in the - setPlainText() call. + The text is set or replaced using setPlainText() which deletes the + existing text and replaces it with the text passed to setPlainText(). - Text itself can be inserted using the QTextCursor class or using - the convenience functins insertPlainText(), appendPlainText() or + Text can be inserted using the QTextCursor class or using the + convenience functions insertPlainText(), appendPlainText() or paste(). - By default the text edit wraps words at whitespace to fit within + By default, the text edit wraps words at whitespace to fit within the text edit widget. The setLineWrapMode() function is used to specify the kind of line wrap you want, \l WidgetWidth or \l NoWrap if you don't want any wrapping. If you use word wrap to |