summaryrefslogtreecommitdiffstats
path: root/qtools
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-08-01 19:30:38 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-08-01 19:30:38 (GMT)
commit27fbe8df275a2b044e1bc1a616ed1218f6e5b375 (patch)
treea2ddd89830ad92954088dd2e8c79611cd5a4f6bb /qtools
parent569dc00744327d6f7b56303792225a0c0d3e871f (diff)
downloadDoxygen-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.cpp2
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++;