summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2019-07-17 11:36:35 -0700
committerThiago Macieira <thiago.macieira@intel.com>2019-08-12 22:06:39 -0700
commit7922cd5272f84ca4180d6ebb45e5a81a45d14a92 (patch)
tree56c0155adc9dbcfc65628b5b60719d670a24c757 /src
parent09b0038513bb738a89d9a0f1e64f7084f2dd5da0 (diff)
QChar: add FormFeed (FF) special character
[ChangeLog][QtCore][QChar] Added FormFeed (FF) special character. Fixes: QTBUG-77089 Change-Id: I1024ee42da0c4323953afffd15b245a508f545f0 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Diffstat (limited to 'src')
-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 0c190c6a3d..7dd353b4ba 100644
--- a/src/corelib/text/qchar.cpp
+++ b/src/corelib/text/qchar.cpp
@@ -572,6 +572,7 @@ QT_BEGIN_NAMESPACE
\value Null A QChar with this value isNull().
\value Tabulation Character tabulation.
\value LineFeed
+ \value FormFeed
\value CarriageReturn
\value Space
\value Nbsp Non-breaking space.
diff --git a/src/corelib/text/qchar.h b/src/corelib/text/qchar.h
index e028a24c24..f67a7ea90a 100644
--- a/src/corelib/text/qchar.h
+++ b/src/corelib/text/qchar.h
@@ -78,6 +78,7 @@ public:
Null = 0x0000,
Tabulation = 0x0009,
LineFeed = 0x000a,
+ FormFeed = 0x000c,
CarriageReturn = 0x000d,
Space = 0x0020,
Nbsp = 0x00a0,