summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eblomfel@trolltech.com>2011-04-22 09:20:37 (GMT)
committerEskil Abrahamsen Blomfeldt <eblomfel@trolltech.com>2011-04-22 09:20:37 (GMT)
commit1a1683c2d57debbb3e7f3ae6001eb2c8685dca02 (patch)
tree470839793de2567fd8b085f198edd0d72126fc38
parent774b5b8c6a627fc90fb7382bc907db5d2e8193bf (diff)
downloadQt-1a1683c2d57debbb3e7f3ae6001eb2c8685dca02.zip
Qt-1a1683c2d57debbb3e7f3ae6001eb2c8685dca02.tar.gz
Qt-1a1683c2d57debbb3e7f3ae6001eb2c8685dca02.tar.bz2
doc: Simplify language in QGlyphs docs
Mainly to trigger CI. Reviewed-by: TrustMe
-rw-r--r--src/gui/text/qglyphs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/text/qglyphs.cpp b/src/gui/text/qglyphs.cpp
index a82b265..cfea6ec 100644
--- a/src/gui/text/qglyphs.cpp
+++ b/src/gui/text/qglyphs.cpp
@@ -76,8 +76,8 @@ QT_BEGIN_NAMESPACE
QTextLayout::glyphs() or QTextFragment::glyphs() can be used to convert unicode encoded text
into a list of QGlyphs objects, and QPainter::drawGlyphs() can be used to draw the glyphs.
- \note Please note that QRawFont is considered local to the thread in which it is constructed,
- which in turn means that a new QRawFont will have to be created and set on the QGlyphs if it is
+ \note Please note that QRawFont is considered local to the thread in which it is constructed.
+ This in turn means that a new QRawFont will have to be created and set on the QGlyphs if it is
moved to a different thread. If the QGlyphs contains a reference to a QRawFont from a different
thread than the current, it will not be possible to draw the glyphs using a QPainter, as the
QRawFont is considered invalid and inaccessible in this case.