mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
fix blank characters check in QChar::isSpace()
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
parent
4083396e1e
commit
6391c52b86
1 changed files with 3 additions and 3 deletions
|
@ -615,10 +615,10 @@ bool QChar::isSpace() const
|
|||
case U_PARAGRAPH_SEPARATOR:
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
// special characters check
|
||||
return u_isblank(ucs);
|
||||
}
|
||||
// special characters check
|
||||
return u_isblank(ucs);
|
||||
return false;
|
||||
}
|
||||
|
||||
/*!
|
||||
|
|
Loading…
Add table
Reference in a new issue