From 3fbb643d514200ff508c39f682fccf6f715fef87 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 19 Sep 2017 09:09:09 +0300 Subject: [PATCH] GCC bug workaround. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67274 --- Telegram/SourceFiles/boxes/sticker_set_box.cpp | 2 +- Telegram/SourceFiles/chat_helpers/tabbed_panel.cpp | 2 +- Telegram/SourceFiles/info/info_narrow_wrap.cpp | 2 +- Telegram/SourceFiles/info/info_profile_lines.cpp | 6 +++--- Telegram/SourceFiles/info/info_top_bar.cpp | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Telegram/SourceFiles/boxes/sticker_set_box.cpp b/Telegram/SourceFiles/boxes/sticker_set_box.cpp index 9c13ac9d9..9bb4cd564 100644 --- a/Telegram/SourceFiles/boxes/sticker_set_box.cpp +++ b/Telegram/SourceFiles/boxes/sticker_set_box.cpp @@ -59,7 +59,7 @@ void StickerSetBox::prepare() { _inner->setInstalled() | rpl::start([this](auto &&setId) { Auth().api().stickerSetInstalled(setId); - closeBox(); + this->closeBox(); }, lifetime()); } diff --git a/Telegram/SourceFiles/chat_helpers/tabbed_panel.cpp b/Telegram/SourceFiles/chat_helpers/tabbed_panel.cpp index f0e8d6c4b..0b99be478 100644 --- a/Telegram/SourceFiles/chat_helpers/tabbed_panel.cpp +++ b/Telegram/SourceFiles/chat_helpers/tabbed_panel.cpp @@ -64,7 +64,7 @@ TabbedPanel::TabbedPanel( }); _selector->showRequests() | rpl::start([this](auto&&) { - showFromSelector(); + this->showFromSelector(); }, lifetime()); resize(QRect(0, 0, st::emojiPanWidth, st::emojiPanMaxHeight).marginsAdded(innerPadding()).size()); diff --git a/Telegram/SourceFiles/info/info_narrow_wrap.cpp b/Telegram/SourceFiles/info/info_narrow_wrap.cpp index 8d54f9175..d39ead1b7 100644 --- a/Telegram/SourceFiles/info/info_narrow_wrap.cpp +++ b/Telegram/SourceFiles/info/info_narrow_wrap.cpp @@ -88,7 +88,7 @@ object_ptr NarrowWrap::createTopBar() { result->enableBackButton(true); result->backRequest() | rpl::start([this](auto&&) { - controller()->showBackFromStack(); + this->controller()->showBackFromStack(); }, result->lifetime()); result->setTitle(TitleValue( _content->section(), diff --git a/Telegram/SourceFiles/info/info_profile_lines.cpp b/Telegram/SourceFiles/info/info_profile_lines.cpp index 9ae45ea54..5277cc67c 100644 --- a/Telegram/SourceFiles/info/info_profile_lines.cpp +++ b/Telegram/SourceFiles/info/info_profile_lines.cpp @@ -323,16 +323,16 @@ void CoverLine::initViewers() { using Flag = Notify::PeerUpdate::Flag; PeerUpdateViewer(_peer, Flag::PhotoChanged) | rpl::start( - [this](auto&&) { refreshUserpicLink(); }, + [this](auto&&) { this->refreshUserpicLink(); }, _lifetime); PeerUpdateViewer(_peer, Flag::NameChanged) | rpl::start( - [this](auto&&) { refreshNameText(); }, + [this](auto&&) { this->refreshNameText(); }, _lifetime); PeerUpdateViewer(_peer, Flag::UserOnlineChanged | Flag::MembersChanged) | rpl::start( - [this](auto&&) { refreshStatusText(); }, + [this](auto&&) { this->refreshStatusText(); }, _lifetime); } diff --git a/Telegram/SourceFiles/info/info_top_bar.cpp b/Telegram/SourceFiles/info/info_top_bar.cpp index fd21ab5b2..5dc925853 100644 --- a/Telegram/SourceFiles/info/info_top_bar.cpp +++ b/Telegram/SourceFiles/info/info_top_bar.cpp @@ -59,8 +59,8 @@ void TopBar::pushButton(object_ptr button) { auto weak = Ui::AttachParentChild(this, button); _buttons.push_back(std::move(button)); weak->widthValue() - | rpl::start([this](auto) { - updateControlsGeometry(width()); + | rpl::start([this](auto&&) { + this->updateControlsGeometry(this->width()); }, _lifetime); }