add missing space to statement in QChar::isSpace()

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
Ivailo Monev 2019-07-24 10:53:05 +00:00
parent b966fe78bb
commit 08ded7687c

View 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);