summaryrefslogtreecommitdiffstats
path: root/src/gui/text
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/text')
-rw-r--r--src/gui/text/qtextdocument.cpp3
-rw-r--r--src/gui/text/qtextformat.cpp4
2 files changed, 5 insertions, 2 deletions
diff --git a/src/gui/text/qtextdocument.cpp b/src/gui/text/qtextdocument.cpp
index e8dd663354..d3b70aaf26 100644
--- a/src/gui/text/qtextdocument.cpp
+++ b/src/gui/text/qtextdocument.cpp
@@ -1142,6 +1142,9 @@ void QTextDocument::setMetaInformation(MetaInformation info, const QString &stri
Returns the plain text contained in the document. If you want
formatting information use a QTextCursor instead.
+ \note Embedded objects, such as images, are represented by a
+ Unicode value U+FFFC (OBJECT REPLACEMENT CHARACTER).
+
\sa toHtml()
*/
QString QTextDocument::toPlainText() const
diff --git a/src/gui/text/qtextformat.cpp b/src/gui/text/qtextformat.cpp
index c60d0cc775..598a22d9c6 100644
--- a/src/gui/text/qtextformat.cpp
+++ b/src/gui/text/qtextformat.cpp
@@ -3027,8 +3027,8 @@ QTextTableFormat::QTextTableFormat(const QTextFormat &fmt)
\ingroup richtext-processing
\ingroup shared
- Inline images are represented by an object replacement character
- (0xFFFC in Unicode) which has an associated QTextImageFormat. The
+ Inline images are represented by a Unicode value U+FFFC (OBJECT
+ REPLACEMENT CHARACTER) which has an associated QTextImageFormat. The
image format specifies a name with setName() that is used to
locate the image. The size of the rectangle that the image will
occupy is specified using setWidth() and setHeight().