From 08ded7687cb92ebaa96d504b439e3b7a1d5c6f35 Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Wed, 24 Jul 2019 10:53:05 +0000 Subject: [PATCH] add missing space to statement in QChar::isSpace() Signed-off-by: Ivailo Monev --- src/core/tools/qchar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/tools/qchar.cpp b/src/core/tools/qchar.cpp index 05109c8e6..ac14ea412 100644 --- a/src/core/tools/qchar.cpp +++ b/src/core/tools/qchar.cpp @@ -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);