diff options
Diffstat (limited to 'src/xml/qdom.cpp')
-rw-r--r-- | src/xml/qdom.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xml/qdom.cpp b/src/xml/qdom.cpp index 44f073460..64658c1c6 100644 --- a/src/xml/qdom.cpp +++ b/src/xml/qdom.cpp @@ -3655,8 +3655,8 @@ static bool isXmlChar(const TQChar &c) return uc == 0x9 || uc == 0xA || uc == 0xD - || 0x20 <= uc && uc <= 0xD7FF - || 0xE000 <= uc && uc <= 0xFFFD; + || ( 0x20 <= uc && uc <= 0xD7FF ) + || ( 0xE000 <= uc && uc <= 0xFFFD ); } /* |