mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 19:02:59 +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:
|
case U_PARAGRAPH_SEPARATOR:
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
return false;
|
// special characters check
|
||||||
|
return u_isblank(ucs);
|
||||||
}
|
}
|
||||||
// special characters check
|
return false;
|
||||||
return u_isblank(ucs);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
|
Loading…
Add table
Reference in a new issue