OSDN Git Service

add missing space to statement in QChar::isSpace()
authorIvailo Monev <xakepa10@laimg.moc>
Wed, 24 Jul 2019 10:53:05 +0000 (10:53 +0000)
committerIvailo Monev <xakepa10@laimg.moc>
Wed, 24 Jul 2019 10:53:05 +0000 (10:53 +0000)
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
src/core/tools/qchar.cpp

index 05109c8..ac14ea4 100644 (file)
@@ -617,7 +617,7 @@ bool QChar::isPrint() const
 */
 bool QChar::isSpace() const
 {
-    if(ucs >= 9 && ucs <=13)
+    if(ucs >= 9 && ucs <= 13)
         return true;
 
     const utf8proc_category_t category = utf8proc_category(ucs);