mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-07-25 06:54:43 +00:00
Replaced some qsl with u""_q literal.
This commit is contained in:
@@ -267,9 +267,9 @@ void IdentityBox::updateControlsPosition() {
|
||||
|
||||
void IdentityBox::chooseScan() {
|
||||
const auto filter = FileDialog::AllFilesFilter()
|
||||
+ qsl(";;Image files (*")
|
||||
+ cImgExtensions().join(qsl(" *"))
|
||||
+ qsl(")");
|
||||
+ u";;Image files (*"_q
|
||||
+ cImgExtensions().join(u" *"_q)
|
||||
+ u")"_q;
|
||||
const auto callback = [=](FileDialog::OpenResult &&result) {
|
||||
if (result.paths.size() == 1) {
|
||||
encryptScan(result.paths.front());
|
||||
|
||||
Reference in New Issue
Block a user