2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

Renamed FillProfileQrBox to FillPeerQrBox.

This commit is contained in:
23rd
2024-09-10 01:59:53 +03:00
parent 1db426da2e
commit 8c915e6dc3
4 changed files with 7 additions and 7 deletions

View File

@@ -51,7 +51,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "main/main_session.h"
#include "menu/menu_mute.h"
#include "support/support_helper.h"
#include "ui/boxes/profile_qr_box.h"
#include "ui/boxes/peer_qr_box.h"
#include "ui/boxes/report_box.h"
#include "ui/controls/userpic_button.h"
#include "ui/painter.h"
@@ -1121,7 +1121,7 @@ object_ptr<Ui::RpWidget> DetailsFiller::setupInfo() {
copyUsername->setClickedCallback([=] {
if (!user->isBot()) {
controller->show(Box([=](not_null<Ui::GenericBox*> box) {
Ui::FillProfileQrBox(box, user);
Ui::FillPeerQrBox(box, user);
}));
return false;
}