From 325e4af356cc94232806588bf26d118a4fffe82d Mon Sep 17 00:00:00 2001 From: Sean Wei Date: Thu, 7 Nov 2019 11:12:36 +0800 Subject: [PATCH 01/91] Fix building instruction of macOS (crashpad) --- docs/building-osx.md | 4 ++-- docs/building-xcode.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/building-osx.md b/docs/building-osx.md index fadd82002..8d51ed56b 100644 --- a/docs/building-osx.md +++ b/docs/building-osx.md @@ -213,12 +213,12 @@ Go to ***BuildPath*** and run git clone https://chromium.googlesource.com/crashpad/crashpad.git cd crashpad git checkout feb3aa3923 - git apply ../../patches/crashpad.diff + git apply ../patches/crashpad.diff cd third_party/mini_chromium git clone https://chromium.googlesource.com/chromium/mini_chromium cd mini_chromium git checkout 7c5b0c1ab4 - git apply ../../../../../patches/mini_chromium.diff + git apply ../../../../patches/mini_chromium.diff cd ../../gtest git clone https://chromium.googlesource.com/external/github.com/google/googletest gtest cd gtest diff --git a/docs/building-xcode.md b/docs/building-xcode.md index 220f823ab..a780a4ba0 100644 --- a/docs/building-xcode.md +++ b/docs/building-xcode.md @@ -213,12 +213,12 @@ Go to ***BuildPath*** and run git clone https://chromium.googlesource.com/crashpad/crashpad.git cd crashpad git checkout feb3aa3923 - git apply ../../patches/crashpad.diff + git apply ../patches/crashpad.diff cd third_party/mini_chromium git clone https://chromium.googlesource.com/chromium/mini_chromium cd mini_chromium git checkout 7c5b0c1ab4 - git apply ../../../../../patches/mini_chromium.diff + git apply ../../../../patches/mini_chromium.diff cd ../../gtest git clone https://chromium.googlesource.com/external/github.com/google/googletest gtest cd gtest From a196b0aba723de85ee573594d9ad420412b6391a Mon Sep 17 00:00:00 2001 From: RadRussianRus Date: Mon, 11 Nov 2019 19:39:48 +0300 Subject: [PATCH 02/91] Fixed animated stickers cache --- Telegram/SourceFiles/ffmpeg/ffmpeg_utility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/ffmpeg/ffmpeg_utility.cpp b/Telegram/SourceFiles/ffmpeg/ffmpeg_utility.cpp index 4693f2e11..6329bbddf 100644 --- a/Telegram/SourceFiles/ffmpeg/ffmpeg_utility.cpp +++ b/Telegram/SourceFiles/ffmpeg/ffmpeg_utility.cpp @@ -70,7 +70,7 @@ void PremultiplyLine(uchar *dst, const uchar *src, int intsCount) { #ifndef TDESKTOP_OFFICIAL_TARGET for (auto i = 0; i != intsCount; ++i) { - dst[i] = qPremultiply(src[i]); + udst[i] = qPremultiply(usrc[i]); } #elif QT_VERSION < QT_VERSION_CHECK(5, 12, 0) static const auto layout = &qPixelLayouts[QImage::Format_ARGB32]; From 793862bee641e3b0eee59451897f50f1ab6e2ed2 Mon Sep 17 00:00:00 2001 From: Nicholas Guriev Date: Tue, 12 Nov 2019 18:15:34 +0300 Subject: [PATCH 03/91] Fix -Wredundant-move and -Wdeprecated-copy warnings (#6663) * Do not move result at end of function This makes GCC 9.1.2 happy with the active -Wredundant-move warning. Indeed, such moving of local variables or local arguments before returning is unnecessary and prevents the compiler from copy elision optimization. --- Telegram/SourceFiles/boxes/connection_box.cpp | 2 +- Telegram/SourceFiles/boxes/create_poll_box.cpp | 2 +- Telegram/SourceFiles/boxes/peers/edit_linked_chat_box.cpp | 2 +- .../SourceFiles/boxes/peers/edit_participants_box.cpp | 4 ++-- Telegram/SourceFiles/boxes/peers/edit_peer_info_box.cpp | 8 ++++---- Telegram/SourceFiles/boxes/peers/edit_peer_type_box.cpp | 6 +++--- Telegram/SourceFiles/calls/calls_box_controller.cpp | 3 +-- Telegram/SourceFiles/chat_helpers/emoji_list_widget.cpp | 2 +- Telegram/SourceFiles/chat_helpers/gifs_list_widget.cpp | 2 +- Telegram/SourceFiles/chat_helpers/stickers.cpp | 2 +- .../SourceFiles/chat_helpers/stickers_list_widget.cpp | 2 +- Telegram/SourceFiles/chat_helpers/tabbed_section.cpp | 2 +- .../history/admin_log/history_admin_log_section.cpp | 4 ++-- .../SourceFiles/history/feed/history_feed_section.cpp | 4 ++-- .../history/view/history_view_scheduled_section.cpp | 4 ++-- .../SourceFiles/info/channels/info_channels_widget.cpp | 4 ++-- .../info/common_groups/info_common_groups_widget.cpp | 4 ++-- .../info/feed/info_feed_profile_inner_widget.cpp | 2 +- .../SourceFiles/info/feed/info_feed_profile_widget.cpp | 4 ++-- Telegram/SourceFiles/info/info_memento.cpp | 4 ++-- Telegram/SourceFiles/info/info_wrap_widget.cpp | 2 +- Telegram/SourceFiles/info/media/info_media_buttons.h | 6 +++--- Telegram/SourceFiles/info/media/info_media_widget.cpp | 4 ++-- Telegram/SourceFiles/info/members/info_members_widget.cpp | 4 ++-- .../SourceFiles/info/profile/info_profile_actions.cpp | 8 ++++---- .../info/profile/info_profile_inner_widget.cpp | 4 ++-- Telegram/SourceFiles/info/profile/info_profile_widget.cpp | 4 ++-- .../SourceFiles/info/settings/info_settings_widget.cpp | 4 ++-- .../SourceFiles/media/streaming/media_streaming_file.cpp | 2 +- .../SourceFiles/passport/passport_panel_controller.cpp | 4 ++-- .../SourceFiles/settings/settings_privacy_controllers.cpp | 4 ++-- .../SourceFiles/settings/settings_privacy_security.cpp | 4 ++-- Telegram/SourceFiles/window/window_outdated_bar.cpp | 2 +- Telegram/lib_base | 2 +- 34 files changed, 60 insertions(+), 61 deletions(-) diff --git a/Telegram/SourceFiles/boxes/connection_box.cpp b/Telegram/SourceFiles/boxes/connection_box.cpp index a4873f019..663739f26 100644 --- a/Telegram/SourceFiles/boxes/connection_box.cpp +++ b/Telegram/SourceFiles/boxes/connection_box.cpp @@ -1148,7 +1148,7 @@ object_ptr ProxiesBoxController::create() { for (const auto &item : _list) { updateView(item); } - return std::move(result); + return result; } auto ProxiesBoxController::findById(int id) -> std::vector::iterator { diff --git a/Telegram/SourceFiles/boxes/create_poll_box.cpp b/Telegram/SourceFiles/boxes/create_poll_box.cpp index ad9a1db47..11d44d311 100644 --- a/Telegram/SourceFiles/boxes/create_poll_box.cpp +++ b/Telegram/SourceFiles/boxes/create_poll_box.cpp @@ -768,7 +768,7 @@ object_ptr CreatePollBox::setupContent() { FocusAtEnd(question); }, lifetime()); - return std::move(result); + return result; } void CreatePollBox::prepare() { diff --git a/Telegram/SourceFiles/boxes/peers/edit_linked_chat_box.cpp b/Telegram/SourceFiles/boxes/peers/edit_linked_chat_box.cpp index d490a38f4..cc55265a8 100644 --- a/Telegram/SourceFiles/boxes/peers/edit_linked_chat_box.cpp +++ b/Telegram/SourceFiles/boxes/peers/edit_linked_chat_box.cpp @@ -223,7 +223,7 @@ object_ptr SetupAbout( tr::now, Ui::Text::WithEntities); }()); - return std::move(about); + return about; } object_ptr SetupFooter( diff --git a/Telegram/SourceFiles/boxes/peers/edit_participants_box.cpp b/Telegram/SourceFiles/boxes/peers/edit_participants_box.cpp index 09a0960f6..892b5a6a6 100644 --- a/Telegram/SourceFiles/boxes/peers/edit_participants_box.cpp +++ b/Telegram/SourceFiles/boxes/peers/edit_participants_box.cpp @@ -1786,7 +1786,7 @@ std::unique_ptr ParticipantsBoxController::createRow( row->setActionLink(tr::lng_profile_kick(tr::now)); } } - return std::move(row); + return row; } auto ParticipantsBoxController::computeType( @@ -1931,7 +1931,7 @@ auto ParticipantsBoxSearchController::saveState() const result->offset = _offset; result->allLoaded = _allLoaded; result->wasLoading = (_requestId != 0); - return std::move(result); + return result; } void ParticipantsBoxSearchController::restoreState( diff --git a/Telegram/SourceFiles/boxes/peers/edit_peer_info_box.cpp b/Telegram/SourceFiles/boxes/peers/edit_peer_info_box.cpp index 918901b88..c84e6be4e 100644 --- a/Telegram/SourceFiles/boxes/peers/edit_peer_info_box.cpp +++ b/Telegram/SourceFiles/boxes/peers/edit_peer_info_box.cpp @@ -478,7 +478,7 @@ object_ptr Controller::createTitleEdit() { [=] { submitTitle(); }); _controls.title = result->entity(); - return std::move(result); + return result; } object_ptr Controller::createDescriptionEdit() { @@ -512,7 +512,7 @@ object_ptr Controller::createDescriptionEdit() { [=] { submitDescription(); }); _controls.description = result->entity(); - return std::move(result); + return result; } object_ptr Controller::createManageGroupButtons() { @@ -526,7 +526,7 @@ object_ptr Controller::createManageGroupButtons() { fillManageSection(); - return std::move(result); + return result; } object_ptr Controller::createStickersEdit() { @@ -564,7 +564,7 @@ object_ptr Controller::createStickersEdit() { Ui::show(Box(channel), Ui::LayerOption::KeepOther); }); - return std::move(result); + return result; } bool Controller::canEditInformation() const { diff --git a/Telegram/SourceFiles/boxes/peers/edit_peer_type_box.cpp b/Telegram/SourceFiles/boxes/peers/edit_peer_type_box.cpp index 7c67aba61..8dd0c2eaa 100644 --- a/Telegram/SourceFiles/boxes/peers/edit_peer_type_box.cpp +++ b/Telegram/SourceFiles/boxes/peers/edit_peer_type_box.cpp @@ -364,7 +364,7 @@ object_ptr Controller::createUsernameEdit() { const auto shown = (_controls.privacy->value() == Privacy::HasUsername); result->toggle(shown, anim::type::instant); - return std::move(result); + return result; } void Controller::privacyChanged(Privacy value) { @@ -630,7 +630,7 @@ object_ptr Controller::createInviteLinkEdit() { observeInviteLink(); - return std::move(result); + return result; } void Controller::refreshEditInviteLink() { @@ -692,7 +692,7 @@ object_ptr Controller::createInviteLinkCreate() { observeInviteLink(); - return std::move(result); + return result; } void Controller::refreshCreateInviteLink() { diff --git a/Telegram/SourceFiles/calls/calls_box_controller.cpp b/Telegram/SourceFiles/calls/calls_box_controller.cpp index 937c34a74..ab5189452 100644 --- a/Telegram/SourceFiles/calls/calls_box_controller.cpp +++ b/Telegram/SourceFiles/calls/calls_box_controller.cpp @@ -404,8 +404,7 @@ BoxController::Row *BoxController::rowForItem(not_null item) std::unique_ptr BoxController::createRow( not_null item) const { - auto row = std::make_unique(item); - return std::move(row); + return std::make_unique(item); } } // namespace Calls diff --git a/Telegram/SourceFiles/chat_helpers/emoji_list_widget.cpp b/Telegram/SourceFiles/chat_helpers/emoji_list_widget.cpp index a9b4129f0..3f597b931 100644 --- a/Telegram/SourceFiles/chat_helpers/emoji_list_widget.cpp +++ b/Telegram/SourceFiles/chat_helpers/emoji_list_widget.cpp @@ -427,7 +427,7 @@ object_ptr EmojiListWidget::createFooter() { Expects(_footer == nullptr); auto result = object_ptr