summaryrefslogtreecommitdiffstats
path: root/src/xml/qdom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/xml/qdom.cpp')
-rw-r--r--src/xml/qdom.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xml/qdom.cpp b/src/xml/qdom.cpp
index 44f07346..64658c1c 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 );
}
/*