summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qchar.h
diff options
context:
space:
mode:
authorRitt Konstantin <ritt.ks@gmail.com>2011-07-08 18:28:09 +0400
committerQt by Nokia <qt-info@nokia.com>2011-07-13 13:31:42 +0200
commitebfd24a20b1acdced5fe032eedb2737efdc6eb92 (patch)
treeff93db5094ad4d405f209acf4cd32386dcbc9667 /src/corelib/tools/qchar.h
parent46e29853798371631a94fbbb11d265d0dbd7f655 (diff)
make QChar::Unicode_Unassigned a constantly big value
this makes the version based checks a bit simpler (and thus faster) Change-Id: I975c6d043d238a5c16a4b13f8379e87fbade23cc Reviewed-on: http://codereview.qt.nokia.com/1586 Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'src/corelib/tools/qchar.h')
-rw-r--r--src/corelib/tools/qchar.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/tools/qchar.h b/src/corelib/tools/qchar.h
index af50f6dde7..9047b6a9da 100644
--- a/src/corelib/tools/qchar.h
+++ b/src/corelib/tools/qchar.h
@@ -190,7 +190,6 @@ public:
};
enum UnicodeVersion {
- Unicode_Unassigned, // ### Qt 5: assign with some constantly big value
Unicode_1_1,
Unicode_2_0,
Unicode_2_1_2,
@@ -199,7 +198,8 @@ public:
Unicode_3_2,
Unicode_4_0,
Unicode_4_1,
- Unicode_5_0
+ Unicode_5_0,
+ Unicode_Unassigned = 0xff
};
// ****** WHEN ADDING FUNCTIONS, CONSIDER ADDING TO QCharRef TOO