summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qchar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/tools/qchar.cpp')
-rw-r--r--src/corelib/tools/qchar.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/corelib/tools/qchar.cpp b/src/corelib/tools/qchar.cpp
index 475bd55de4..89f19b40e6 100644
--- a/src/corelib/tools/qchar.cpp
+++ b/src/corelib/tools/qchar.cpp
@@ -259,8 +259,6 @@ QT_BEGIN_NAMESPACE
\value Symbol_Other Unicode class name So
- \value NoCategory Qt cannot find an appropriate category for the character.
-
\omitvalue Punctuation_Dask
\sa category()
@@ -764,7 +762,7 @@ QChar::Category QChar::category() const
QChar::Category QChar::category(uint ucs4)
{
if (ucs4 > UNICODE_LAST_CODEPOINT)
- return QChar::NoCategory;
+ return QChar::Other_NotAssigned;
return (QChar::Category) qGetProp(ucs4)->category;
}