summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qchar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/tools/qchar.h')
-rw-r--r--src/corelib/tools/qchar.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/corelib/tools/qchar.h b/src/corelib/tools/qchar.h
index fc5a9b051d..36e185ebce 100644
--- a/src/corelib/tools/qchar.h
+++ b/src/corelib/tools/qchar.h
@@ -240,7 +240,13 @@ public:
|| (ucs > 127 && isLetter(ucs));
}
bool isNumber() const;
- bool isLetterOrNumber() const;
+ inline bool isLetterOrNumber() const
+ {
+ return (ucs >= 'a' && ucs <= 'z')
+ || (ucs <= 'Z' && ucs >= 'A')
+ || (ucs <= '9' && ucs >= '0')
+ || (ucs > 127 && isLetterOrNumber(ucs));
+ }
inline bool isDigit() const
{ return (ucs <= '9' && ucs >= '0') || (ucs > 127 && isDigit(ucs)); }
bool isSymbol() const;
@@ -322,6 +328,7 @@ public:
private:
static bool QT_FASTCALL isDigit(ushort ucs2);
static bool QT_FASTCALL isLetter(ushort ucs2);
+ static bool QT_FASTCALL isLetterOrNumber(ushort ucs2);
#ifdef QT_NO_CAST_FROM_ASCII
QChar(char c);