summaryrefslogtreecommitdiffstats
path: root/src/corelib/text
diff options
context:
space:
mode:
authorQt CI Bot <qt_ci_bot@qt-project.org>2021-04-15 04:58:02 +0000
committerQt CI Bot <qt_ci_bot@qt-project.org>2021-04-15 04:58:02 +0000
commit33e098704e87354c58b3bf975c3113cb82f6be07 (patch)
tree528b619464048976209223d32d6f2037995a402c /src/corelib/text
parentcb3db096170d3ab290ba11773f405aab1ef06ef8 (diff)
parent78c4d0c48f58854127aa9248f597bf8568f440a1 (diff)
Merge integration refs/builds/qtci/dev/1618451439
Diffstat (limited to 'src/corelib/text')
-rw-r--r--src/corelib/text/qchar.cpp1
-rw-r--r--src/corelib/text/qchar.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/corelib/text/qchar.cpp b/src/corelib/text/qchar.cpp
index dcc36d18ce..7aff25fb4a 100644
--- a/src/corelib/text/qchar.cpp
+++ b/src/corelib/text/qchar.cpp
@@ -595,6 +595,7 @@ QT_BEGIN_NAMESPACE
\value ByteOrderSwapped
\value ParagraphSeparator
\value LineSeparator
+ \value VisualTabCharacter Used to represent a tabulation as a horizontal arrow. Since 6.2.
\value LastValidCodePoint
*/
diff --git a/src/corelib/text/qchar.h b/src/corelib/text/qchar.h
index 78d95e39fa..2a899abf6b 100644
--- a/src/corelib/text/qchar.h
+++ b/src/corelib/text/qchar.h
@@ -98,6 +98,7 @@ public:
ByteOrderSwapped = 0xfffe,
ParagraphSeparator = 0x2029,
LineSeparator = 0x2028,
+ VisualTabCharacter = 0x2192,
LastValidCodePoint = 0x10ffff
};