diff --git a/Telegram/SourceFiles/boxes/add_contact_box.cpp b/Telegram/SourceFiles/boxes/add_contact_box.cpp index f06d0c072..71015f555 100644 --- a/Telegram/SourceFiles/boxes/add_contact_box.cpp +++ b/Telegram/SourceFiles/boxes/add_contact_box.cpp @@ -436,9 +436,9 @@ void GroupInfoBox::createGroup(not_null selectUsersBox, const QStr }).fail([this, selectUsersBox](const RPCError &error) { _creationRequestId = 0; if (error.type() == qstr("NO_CHAT_TITLE")) { - auto guard = weak(this); + auto weak = make_weak(this); selectUsersBox->closeBox(); - if (guard) { + if (weak) { _title->showError(); } } else if (error.type() == qstr("USERS_TOO_FEW")) { @@ -471,16 +471,22 @@ void GroupInfoBox::onNext() { if (_creating != CreatingGroupGroup) { createChannel(title, description); } else { - auto initBox = [title, weak = weak(this)](not_null box) { - box->addButton(langFactory(lng_create_group_create), [box, title, weak] { + auto initBox = [title, weak = make_weak(this)]( + not_null box) { + auto create = [box, title, weak] { if (weak) { auto rows = box->peerListCollectSelectedRows(); if (!rows.empty()) { weak->createGroup(box, title, rows); } } - }); - box->addButton(langFactory(lng_cancel), [box] { box->closeBox(); }); + }; + box->addButton( + langFactory(lng_create_group_create), + std::move(create)); + box->addButton( + langFactory(lng_cancel), + [box] { box->closeBox(); }); }; Ui::show( Box( diff --git a/Telegram/SourceFiles/boxes/change_phone_box.cpp b/Telegram/SourceFiles/boxes/change_phone_box.cpp index 2386940ce..20b2b5596 100644 --- a/Telegram/SourceFiles/boxes/change_phone_box.cpp +++ b/Telegram/SourceFiles/boxes/change_phone_box.cpp @@ -271,7 +271,11 @@ void ChangePhoneBox::EnterCode::submit() { hideError(); auto code = _code->getLastText().trimmed(); - _requestId = MTP::send(MTPaccount_ChangePhone(MTP_string(_phone), MTP_string(_hash), MTP_string(code)), rpcDone([weak = weak(this)](const MTPUser &result) { + _requestId = MTP::send(MTPaccount_ChangePhone( + MTP_string(_phone), + MTP_string(_hash), + MTP_string(code) + ), rpcDone([weak = make_weak(this)](const MTPUser &result) { App::feedUser(result); if (weak) { Ui::hideLayer(); diff --git a/Telegram/SourceFiles/boxes/photo_crop_box.cpp b/Telegram/SourceFiles/boxes/photo_crop_box.cpp index 6b540328c..d53fa13cc 100644 --- a/Telegram/SourceFiles/boxes/photo_crop_box.cpp +++ b/Telegram/SourceFiles/boxes/photo_crop_box.cpp @@ -286,9 +286,9 @@ void PhotoCropBox::sendPhoto() { tosend = cropped.copy(); } - auto guard = weak(this); + auto weak = make_weak(this); _readyImages.fire(std::move(tosend)); - if (guard) { + if (weak) { closeBox(); } } diff --git a/Telegram/SourceFiles/history/history_top_bar_widget.cpp b/Telegram/SourceFiles/history/history_top_bar_widget.cpp index 28dde8101..d9bd7dcf1 100644 --- a/Telegram/SourceFiles/history/history_top_bar_widget.cpp +++ b/Telegram/SourceFiles/history/history_top_bar_widget.cpp @@ -203,11 +203,11 @@ void HistoryTopBarWidget::showMenu() { return; } _menu.create(parentWidget()); - _menu->setHiddenCallback([that = weak(this), menu = _menu.data()] { + _menu->setHiddenCallback([weak = make_weak(this), menu = _menu.data()] { menu->deleteLater(); - if (that && that->_menu == menu) { - that->_menu = nullptr; - that->_menuToggle->setForceRippled(false); + if (weak && weak->_menu == menu) { + weak->_menu = nullptr; + weak->_menuToggle->setForceRippled(false); } }); _menu->setShowStartCallback(base::lambda_guarded(this, [this, menu = _menu.data()] { diff --git a/Telegram/SourceFiles/info/info_top_bar.cpp b/Telegram/SourceFiles/info/info_top_bar.cpp index 6d1ff625f..5f9a52176 100644 --- a/Telegram/SourceFiles/info/info_top_bar.cpp +++ b/Telegram/SourceFiles/info/info_top_bar.cpp @@ -58,10 +58,10 @@ void TopBar::registerUpdateControlCallback( QObject *guard, Callback &&callback) { _updateControlCallbacks[guard] =[ - object = weak(guard), + weak = make_weak(guard), callback = std::forward(callback) ](anim::type animated) { - if (!object) { + if (!weak) { return false; } callback(animated); @@ -505,11 +505,11 @@ void TopBar::performForward() { _cancelSelectionClicks.fire({}); return; } - auto callback = [items = std::move(items), that = weak(this)]( + auto callback = [items = std::move(items), weak = make_weak(this)]( not_null peer) { App::main()->setForwardDraft(peer->id, items); - if (that) { - that->_cancelSelectionClicks.fire({}); + if (weak) { + weak->_cancelSelectionClicks.fire({}); } }; Ui::show(Box( diff --git a/Telegram/SourceFiles/info/info_wrap_widget.cpp b/Telegram/SourceFiles/info/info_wrap_widget.cpp index ad831b9f6..57ec050f2 100644 --- a/Telegram/SourceFiles/info/info_wrap_widget.cpp +++ b/Telegram/SourceFiles/info/info_wrap_widget.cpp @@ -838,9 +838,9 @@ object_ptr WrapWidget::createTopBarSurrogate( Assert(_topBar != nullptr); auto result = object_ptr(parent); - result->addClickHandler([wrap = weak(this)]{ - if (wrap) { - wrap->showBackFromStack(); + result->addClickHandler([weak = make_weak(this)]{ + if (weak) { + weak->showBackFromStack(); } }); result->setGeometry(_topBar->geometry()); diff --git a/Telegram/SourceFiles/info/media/info_media_list_widget.cpp b/Telegram/SourceFiles/info/media/info_media_list_widget.cpp index 4a5b6d886..7cd605f7e 100644 --- a/Telegram/SourceFiles/info/media/info_media_list_widget.cpp +++ b/Telegram/SourceFiles/info/media/info_media_list_widget.cpp @@ -1379,12 +1379,12 @@ void ListWidget::forwardItems(SelectedItemSet items) { if (items.empty()) { return; } - auto that = weak(this); + auto weak = make_weak(this); auto controller = std::make_unique( - [that, items = std::move(items)](not_null peer) { + [weak, items = std::move(items)](not_null peer) { App::main()->setForwardDraft(peer->id, items); - if (that) { - that->clearSelected(); + if (weak) { + weak->clearSelected(); } }); Ui::show(Box( diff --git a/Telegram/SourceFiles/messenger.cpp b/Telegram/SourceFiles/messenger.cpp index 8ed27e2fa..e9eae22b9 100644 --- a/Telegram/SourceFiles/messenger.cpp +++ b/Telegram/SourceFiles/messenger.cpp @@ -1001,15 +1001,15 @@ void Messenger::registerLeaveSubscription(QWidget *widget) { #ifdef Q_OS_MAC if (auto topLevel = widget->window()) { if (topLevel == _window.get()) { - auto guarded = weak(widget); + auto weak = make_weak(widget); auto subscription = _window->leaveEvents() - | rpl::start_with_next([guarded] { - if (auto w = guarded.data()) { + | rpl::start_with_next([weak] { + if (const auto window = weak.data()) { QEvent ev(QEvent::Leave); - QGuiApplication::sendEvent(w, &ev); + QGuiApplication::sendEvent(window, &ev); } }); - _leaveSubscriptions.emplace_back(guarded, std::move(subscription)); + _leaveSubscriptions.emplace_back(weak, std::move(subscription)); } } #endif // Q_OS_MAC diff --git a/Telegram/SourceFiles/rpl/event_stream.h b/Telegram/SourceFiles/rpl/event_stream.h index 38075a4ac..4a7f2c286 100644 --- a/Telegram/SourceFiles/rpl/event_stream.h +++ b/Telegram/SourceFiles/rpl/event_stream.h @@ -48,7 +48,7 @@ public: return fire_forward(value); } auto events() const { - return make_producer([weak = weak()]( + return make_producer([weak = make_weak()]( const auto &consumer) { if (auto strong = weak.lock()) { auto result = [weak, consumer] { @@ -82,7 +82,7 @@ private: std::vector> consumers; int depth = 0; }; - std::weak_ptr weak() const; + std::weak_ptr make_weak() const; mutable std::shared_ptr _data; @@ -153,7 +153,7 @@ inline void event_stream::fire_forward( } template -inline auto event_stream::weak() const +inline auto event_stream::make_weak() const -> std::weak_ptr { if (!_data) { _data = std::make_shared(); diff --git a/Telegram/SourceFiles/ui/abstract_button.cpp b/Telegram/SourceFiles/ui/abstract_button.cpp index e59db45ed..b545aa095 100644 --- a/Telegram/SourceFiles/ui/abstract_button.cpp +++ b/Telegram/SourceFiles/ui/abstract_button.cpp @@ -84,13 +84,13 @@ void AbstractButton::mouseReleaseEvent(QMouseEvent *e) { onStateChanged(was, StateChangeSource::ByPress); if (was & StateFlag::Over) { _modifiers = e->modifiers(); - auto test = weak(this); + auto weak = make_weak(this); if (_clickedCallback) { _clickedCallback(); } else { emit clicked(); } - if (test) { + if (weak) { _clicks.fire({}); } } else { diff --git a/Telegram/SourceFiles/ui/twidget.h b/Telegram/SourceFiles/ui/twidget.h index 4e64f30c7..3931abada 100644 --- a/Telegram/SourceFiles/ui/twidget.h +++ b/Telegram/SourceFiles/ui/twidget.h @@ -435,12 +435,12 @@ protected: }; template -QPointer weak(Widget *object) { +QPointer make_weak(Widget *object) { return QPointer(object); } template -QPointer weak(const Widget *object) { +QPointer make_weak(const Widget *object) { return QPointer(object); } diff --git a/Telegram/SourceFiles/window/section_widget.cpp b/Telegram/SourceFiles/window/section_widget.cpp index c8b6dbc98..1935869bb 100644 --- a/Telegram/SourceFiles/window/section_widget.cpp +++ b/Telegram/SourceFiles/window/section_widget.cpp @@ -39,9 +39,9 @@ void SectionWidget::setGeometryWithTopMoved( _topDelta = topDelta; bool willBeResized = (size() != newGeometry.size()); if (geometry() != newGeometry) { - auto that = weak(this); + auto weak = make_weak(this); setGeometry(newGeometry); - if (!that) { + if (!weak) { return; } }