mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-30 22:16:14 +00:00
Replaced some qsl with u""_q literal.
This commit is contained in:
@@ -792,7 +792,7 @@ void PaintUnreadBadge(QPainter &p, const QRect &rect, const UnreadBadgeStyle &st
|
||||
const QString &unreadCount,
|
||||
int allowDigits) {
|
||||
return (allowDigits > 0) && (unreadCount.size() > allowDigits + 1)
|
||||
? qsl("..") + unreadCount.mid(unreadCount.size() - allowDigits)
|
||||
? u".."_q + unreadCount.mid(unreadCount.size() - allowDigits)
|
||||
: unreadCount;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user