mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-31 14:38:15 +00:00
Replaced some qstr with u""_q literal.
This commit is contained in:
@@ -153,9 +153,8 @@ QString StateDescription(const SetState &state) {
|
||||
}
|
||||
|
||||
bool GoodSetPartName(const QString &name) {
|
||||
return (name == qstr("config.json"))
|
||||
|| (name.startsWith(qstr("emoji_"))
|
||||
&& name.endsWith(qstr(".webp")));
|
||||
return (name == u"config.json"_q)
|
||||
|| (name.startsWith(u"emoji_"_q) && name.endsWith(u".webp"_q));
|
||||
}
|
||||
|
||||
bool UnpackSet(const QString &path, const QString &folder) {
|
||||
|
Reference in New Issue
Block a user