diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-08-01 19:30:38 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-08-01 19:30:38 (GMT) |
commit | 27fbe8df275a2b044e1bc1a616ed1218f6e5b375 (patch) | |
tree | a2ddd89830ad92954088dd2e8c79611cd5a4f6bb /qtools | |
parent | 569dc00744327d6f7b56303792225a0c0d3e871f (diff) | |
download | Doxygen-27fbe8df275a2b044e1bc1a616ed1218f6e5b375.zip Doxygen-27fbe8df275a2b044e1bc1a616ed1218f6e5b375.tar.gz Doxygen-27fbe8df275a2b044e1bc1a616ed1218f6e5b375.tar.bz2 |
Bug 705218 - QRegExp doesn't work with 80-FF
Diffstat (limited to 'qtools')
-rw-r--r-- | qtools/qregexp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qtools/qregexp.cpp b/qtools/qregexp.cpp index fcc8f11..d958f0a 100644 --- a/qtools/qregexp.cpp +++ b/qtools/qregexp.cpp @@ -372,7 +372,7 @@ static bool matchcharclass( uint *rxd, char c ) if ( clcode != CCL && clcode != CCN) qWarning("QRegExp: Internal error, please report to qt-bugs@trolltech.com"); uint numFields = *d & MVL; - uint cval = (uint)c; //(((uint)(c.row())) << 8) | ((uint)c.cell()); + uint cval = (unsigned char)c; //(((uint)(c.row())) << 8) | ((uint)c.cell()); bool found = FALSE; for ( int i = 0; i < (int)numFields; i++ ) { d++; |