summaryrefslogtreecommitdiffstats
path: root/src/kernel/tqtextengine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/tqtextengine.cpp')
-rw-r--r--src/kernel/tqtextengine.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/kernel/tqtextengine.cpp b/src/kernel/tqtextengine.cpp
index f50d849cc..05cdbcc13 100644
--- a/src/kernel/tqtextengine.cpp
+++ b/src/kernel/tqtextengine.cpp
@@ -819,8 +819,7 @@ static void calcLineBreaks(const TQString &str, TQCharAttributes *charAttributes
if (category == TQChar::Other_Surrogate) {
// char stop only on first pair
- if (uc[i].unicode() >= 0xd800 && uc[i].unicode() < 0xdc00 && i < len-1
- && uc[i+1].unicode() >= 0xdc00 && uc[i+1].unicode() < 0xe000)
+ if (uc[i].isHighSurrogate() && i < (len - 1) && uc[i + 1].isLowSurrogate())
goto nsm;
// ### correctly handle second surrogate
}