Fix QChar range
This commit is contained in:
parent
24f370d6c0
commit
19787d664c
@ -4424,8 +4424,7 @@ Cache::displayName(const QString &room_id, const QString &user_id)
|
||||
static bool
|
||||
isDisplaynameSafe(const std::string &s)
|
||||
{
|
||||
for (std::uint32_t cc : QString::fromStdString(s).toStdU32String()) {
|
||||
auto c = QChar(cc);
|
||||
for (QChar c : QString::fromStdString(s)) {
|
||||
if (c.isPrint() && !c.isSpace())
|
||||
return false;
|
||||
}
|
||||
|
@ -60,6 +60,8 @@ void
|
||||
Dock::setUnreadCount(const int count)
|
||||
{
|
||||
unitySetNotificationCount(count);
|
||||
|
||||
// qGuiApp->setBadgeNumber(count);
|
||||
}
|
||||
void
|
||||
Dock::unitySetNotificationCount(const int count)
|
||||
|
Loading…
Reference in New Issue
Block a user