mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-08-31 06:35:14 +00:00
Replace base::lambda with shorter term.
base::lambda -> Fn (type alias for std::function). base::lambda_once -> FnMut (type alias for base::unique_function). base::lambda_guarded -> crl::guard. base::lambda_call_type_t -> crl::deduced_call_type.
This commit is contained in:
@@ -565,7 +565,7 @@ void PeerMenuShareContactBox(not_null<UserData*> user) {
|
||||
|
||||
QPointer<Ui::RpWidget> ShowForwardMessagesBox(
|
||||
MessageIdsList &&items,
|
||||
base::lambda_once<void()> &&successCallback) {
|
||||
FnMut<void()> &&successCallback) {
|
||||
const auto weak = std::make_shared<QPointer<PeerListBox>>();
|
||||
auto callback = [
|
||||
ids = std::move(items),
|
||||
@@ -684,7 +684,7 @@ void PeerMenuAddMuteAction(
|
||||
// callback);
|
||||
//}
|
||||
|
||||
base::lambda<void()> ClearHistoryHandler(not_null<PeerData*> peer) {
|
||||
Fn<void()> ClearHistoryHandler(not_null<PeerData*> peer) {
|
||||
return [peer] {
|
||||
const auto weak = std::make_shared<QPointer<ConfirmBox>>();
|
||||
const auto text = peer->isSelf()
|
||||
@@ -708,7 +708,7 @@ base::lambda<void()> ClearHistoryHandler(not_null<PeerData*> peer) {
|
||||
};
|
||||
}
|
||||
|
||||
base::lambda<void()> DeleteAndLeaveHandler(not_null<PeerData*> peer) {
|
||||
Fn<void()> DeleteAndLeaveHandler(not_null<PeerData*> peer) {
|
||||
return [peer] {
|
||||
const auto warningText = peer->isSelf()
|
||||
? lang(lng_sure_delete_saved_messages)
|
||||
|
Reference in New Issue
Block a user