From 12185c30622a32914a61b2786258939aa6cbadef Mon Sep 17 00:00:00 2001 From: crackedmind Date: Mon, 29 Oct 2018 12:44:02 +0300 Subject: [PATCH] Remove unused code --- .../SourceFiles/history/history_widget.cpp | 90 ------------------- 1 file changed, 90 deletions(-) diff --git a/Telegram/SourceFiles/history/history_widget.cpp b/Telegram/SourceFiles/history/history_widget.cpp index 08c40ac4e..85cabfccd 100644 --- a/Telegram/SourceFiles/history/history_widget.cpp +++ b/Telegram/SourceFiles/history/history_widget.cpp @@ -61,7 +61,6 @@ #include "styles/style_chat_helpers.h" #include "styles/style_dialogs.h" #include "styles/style_history.h" -#include "styles/style_profile.h" #include "styles/style_window.h" #include "ui/effects/ripple_animation.h" #include "ui/special_buttons.h" @@ -76,95 +75,6 @@ #include "window/top_bar_widget.h" #include "window/window_controller.h" #include -// Smart pointer for QObject*, has move semantics, destroys object if it doesn't have a parent. -template class test_ptr { -public: - test_ptr(std::nullptr_t) {} - - // No default constructor, but constructors with at least - // one argument are simply make functions. - template - explicit test_ptr(Parent &&parent, Args &&... args) - : _object(new Object(std::forward(parent), std::forward(args)...)) {} - - test_ptr(const test_ptr &other) = delete; - test_ptr &operator=(const test_ptr &other) = delete; - test_ptr(test_ptr &&other) - : _object(base::take(other._object)) {} - test_ptr &operator=(test_ptr &&other) { - auto temp = std::move(other); - destroy(); - std::swap(_object, temp._object); - return *this; - } - - template ::value>> - test_ptr(test_ptr &&other) - : _object(base::take(other._object)) {} - - template ::value>> - test_ptr &operator=(test_ptr &&other) { - _object = base::take(other._object); - return *this; - } - - test_ptr &operator=(std::nullptr_t) { - _object = nullptr; - return *this; - } - - // So we can pass this pointer to methods like connect(). - Object *data() const { - return static_cast(_object); - } - operator Object *() const { - return data(); - } - - explicit operator bool() const { - return _object != nullptr; - } - - Object *operator->() const { - return data(); - } - Object &operator*() const { - return *data(); - } - - // Use that instead "= new Object(parent, ...)" - template void create(Parent &&parent, Args &&... args) { - destroy(); - _object = new Object(std::forward(parent), std::forward(args)...); - } - void destroy() { - delete base::take(_object); - } - void destroyDelayed() { - if (_object) { - if (auto widget = base::up_cast(data())) { - widget->hide(); - } - base::take(_object)->deleteLater(); - } - } - - ~test_ptr() { - if (auto pointer = _object) { - if (!pointer->parent()) { - destroy(); - } - } - } - -private: - template friend class test_ptr; - - QPointer _object; -}; - -class TestClass; -test_ptr tmp = {nullptr}; namespace {