mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
add missing space to statement in QChar::isSpace()
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
parent
b966fe78bb
commit
08ded7687c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue