mirror of https://github.com/procxx/kepka.git
Fix build with new lib_ui commits.
This commit is contained in:
parent
1d613995db
commit
f5aba5a907
|
@ -78,7 +78,7 @@ void ApplyArchivedResult(const MTPDmessages_stickerSetInstallResultArchive &d) {
|
||||||
Local::writeArchivedStickers();
|
Local::writeArchivedStickers();
|
||||||
|
|
||||||
auto toast = Ui::Toast::Config();
|
auto toast = Ui::Toast::Config();
|
||||||
toast.text = tr::lng_stickers_packs_archived(tr::now);
|
toast.text = { tr::lng_stickers_packs_archived(tr::now) };
|
||||||
toast.maxWidth = toast.minWidth = st::stickersToastMaxWidth;
|
toast.maxWidth = toast.minWidth = st::stickersToastMaxWidth;
|
||||||
toast.multiline = true;
|
toast.multiline = true;
|
||||||
toast.padding = st::stickersToastPadding;
|
toast.padding = st::stickersToastPadding;
|
||||||
|
|
|
@ -238,7 +238,7 @@ void ShowErrorToast(const QString &text) {
|
||||||
auto config = Ui::Toast::Config();
|
auto config = Ui::Toast::Config();
|
||||||
config.multiline = true;
|
config.multiline = true;
|
||||||
config.minWidth = st::msgMinWidth;
|
config.minWidth = st::msgMinWidth;
|
||||||
config.text = text;
|
config.text = { text };
|
||||||
Ui::Toast::Show(config);
|
Ui::Toast::Show(config);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@ void ShowErrorToast(const QString &text) {
|
||||||
auto config = Ui::Toast::Config();
|
auto config = Ui::Toast::Config();
|
||||||
config.multiline = true;
|
config.multiline = true;
|
||||||
config.minWidth = st::msgMinWidth;
|
config.minWidth = st::msgMinWidth;
|
||||||
config.text = text;
|
config.text = { text };
|
||||||
Ui::Toast::Show(config);
|
Ui::Toast::Show(config);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,7 @@ ClickHandlerPtr Dice::link() {
|
||||||
auto config = Ui::Toast::Config();
|
auto config = Ui::Toast::Config();
|
||||||
config.multiline = true;
|
config.multiline = true;
|
||||||
config.minWidth = st::msgMinWidth;
|
config.minWidth = st::msgMinWidth;
|
||||||
config.text = tr::lng_about_dice(tr::now);
|
config.text = { tr::lng_about_dice(tr::now) };
|
||||||
Ui::Toast::Show(config);
|
Ui::Toast::Show(config);
|
||||||
});
|
});
|
||||||
return kHandler;
|
return kHandler;
|
||||||
|
|
|
@ -2396,9 +2396,9 @@ void OverlayWidget::initThemePreview() {
|
||||||
_themeShare->setClickedCallback([=] {
|
_themeShare->setClickedCallback([=] {
|
||||||
QGuiApplication::clipboard()->setText(
|
QGuiApplication::clipboard()->setText(
|
||||||
Core::App().createInternalLinkFull("addtheme/" + slug));
|
Core::App().createInternalLinkFull("addtheme/" + slug));
|
||||||
auto config = Ui::Toast::Config();
|
Ui::Toast::Show(
|
||||||
config.text = tr::lng_background_link_copied(tr::now);
|
this,
|
||||||
Ui::Toast::Show(this, config);
|
tr::lng_background_link_copied(tr::now));
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
_themeShare.destroy();
|
_themeShare.destroy();
|
||||||
|
|
|
@ -273,9 +273,7 @@ void SeparatePanel::showBox(
|
||||||
}
|
}
|
||||||
|
|
||||||
void SeparatePanel::showToast(const QString &text) {
|
void SeparatePanel::showToast(const QString &text) {
|
||||||
auto toast = Ui::Toast::Config();
|
Ui::Toast::Show(this, text);
|
||||||
toast.text = text;
|
|
||||||
Ui::Toast::Show(this, toast);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void SeparatePanel::ensureLayerCreated() {
|
void SeparatePanel::ensureLayerCreated() {
|
||||||
|
|
|
@ -630,7 +630,7 @@ void FolderFiller::addTogglesForArchive() {
|
||||||
|
|
||||||
_addAction(tr::lng_context_archive_to_menu(tr::now), [=] {
|
_addAction(tr::lng_context_archive_to_menu(tr::now), [=] {
|
||||||
auto toast = Ui::Toast::Config();
|
auto toast = Ui::Toast::Config();
|
||||||
toast.text = tr::lng_context_archive_to_menu_info(tr::now);
|
toast.text = { tr::lng_context_archive_to_menu_info(tr::now) };
|
||||||
toast.minWidth = toast.maxWidth = st::boxWideWidth;
|
toast.minWidth = toast.maxWidth = st::boxWideWidth;
|
||||||
toast.multiline = true;
|
toast.multiline = true;
|
||||||
toast.durationMs = kArchivedToastDuration;
|
toast.durationMs = kArchivedToastDuration;
|
||||||
|
@ -927,7 +927,7 @@ QPointer<Ui::RpWidget> ShowSendNowMessagesBox(
|
||||||
auto config = Ui::Toast::Config();
|
auto config = Ui::Toast::Config();
|
||||||
config.multiline = true;
|
config.multiline = true;
|
||||||
config.minWidth = st::msgMinWidth;
|
config.minWidth = st::msgMinWidth;
|
||||||
config.text = error;
|
config.text = { error };
|
||||||
Ui::Toast::Show(config);
|
Ui::Toast::Show(config);
|
||||||
return { nullptr };
|
return { nullptr };
|
||||||
}
|
}
|
||||||
|
@ -1036,9 +1036,9 @@ void PeerMenuAddMuteAction(
|
||||||
void ToggleHistoryArchived(not_null<History*> history, bool archived) {
|
void ToggleHistoryArchived(not_null<History*> history, bool archived) {
|
||||||
const auto callback = [=] {
|
const auto callback = [=] {
|
||||||
auto toast = Ui::Toast::Config();
|
auto toast = Ui::Toast::Config();
|
||||||
toast.text = archived
|
toast.text = { archived
|
||||||
? tr::lng_archived_added(tr::now)
|
? tr::lng_archived_added(tr::now)
|
||||||
: tr::lng_archived_removed(tr::now);
|
: tr::lng_archived_removed(tr::now) };
|
||||||
toast.minWidth = toast.maxWidth = st::boxWideWidth;
|
toast.minWidth = toast.maxWidth = st::boxWideWidth;
|
||||||
toast.multiline = true;
|
toast.multiline = true;
|
||||||
if (archived) {
|
if (archived) {
|
||||||
|
|
Loading…
Reference in New Issue