mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-31 06:26:18 +00:00
Moved out GroupMembersWidget to correspond file and namespace.
This commit is contained in:
@@ -876,6 +876,8 @@ PRIVATE
|
||||
history/view/history_view_fake_items.h
|
||||
history/view/history_view_group_call_bar.cpp
|
||||
history/view/history_view_group_call_bar.h
|
||||
history/view/history_view_group_members_widget.cpp
|
||||
history/view/history_view_group_members_widget.h
|
||||
history/view/history_view_item_preview.h
|
||||
history/view/history_view_list_widget.cpp
|
||||
history/view/history_view_list_widget.h
|
||||
@@ -1427,8 +1429,6 @@ PRIVATE
|
||||
platform/platform_window_title.h
|
||||
profile/profile_back_button.cpp
|
||||
profile/profile_back_button.h
|
||||
profile/profile_block_group_members.cpp
|
||||
profile/profile_block_group_members.h
|
||||
profile/profile_block_peer_list.cpp
|
||||
profile/profile_block_peer_list.h
|
||||
profile/profile_block_widget.cpp
|
||||
|
@@ -115,6 +115,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
#include "history/view/history_view_pinned_section.h"
|
||||
#include "history/view/history_view_pinned_bar.h"
|
||||
#include "history/view/history_view_group_call_bar.h"
|
||||
#include "history/view/history_view_group_members_widget.h"
|
||||
#include "history/view/history_view_item_preview.h"
|
||||
#include "history/view/history_view_reply.h"
|
||||
#include "history/view/history_view_requests_bar.h"
|
||||
@@ -122,7 +123,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
#include "history/view/history_view_subsection_tabs.h"
|
||||
#include "history/view/history_view_translate_bar.h"
|
||||
#include "history/view/media/history_view_media.h"
|
||||
#include "profile/profile_block_group_members.h"
|
||||
#include "core/click_handler_types.h"
|
||||
#include "chat_helpers/field_autocomplete.h"
|
||||
#include "chat_helpers/tabbed_panel.h"
|
||||
@@ -5806,7 +5806,7 @@ void HistoryWidget::showMembersDropdown() {
|
||||
if (!_membersDropdown) {
|
||||
_membersDropdown.create(this, st::membersInnerDropdown);
|
||||
_membersDropdown->setOwnedWidget(
|
||||
object_ptr<Profile::GroupMembersWidget>(
|
||||
object_ptr<HistoryView::GroupMembersWidget>(
|
||||
this,
|
||||
controller(),
|
||||
_peer,
|
||||
|
@@ -5,7 +5,7 @@ the official desktop application for the Telegram messaging service.
|
||||
For license and copyright information please follow this link:
|
||||
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
*/
|
||||
#include "profile/profile_block_group_members.h"
|
||||
#include "history/view/history_view_group_members_widget.h"
|
||||
|
||||
#include "api/api_chat_participants.h"
|
||||
#include "styles/style_profile.h"
|
||||
@@ -27,7 +27,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||
#include "lang/lang_keys.h"
|
||||
#include "window/window_session_controller.h"
|
||||
|
||||
namespace Profile {
|
||||
namespace HistoryView {
|
||||
namespace {
|
||||
|
||||
using UpdateFlag = Data::PeerUpdate::Flag;
|
||||
@@ -481,4 +481,4 @@ GroupMembersWidget::~GroupMembersWidget() {
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace Profile
|
||||
} // namespace HistoryView
|
@@ -23,9 +23,9 @@ namespace Window {
|
||||
class SessionController;
|
||||
} // namespace Window
|
||||
|
||||
namespace Profile {
|
||||
namespace HistoryView {
|
||||
|
||||
class GroupMembersWidget : public PeerListWidget {
|
||||
class GroupMembersWidget : public Profile::PeerListWidget {
|
||||
|
||||
public:
|
||||
GroupMembersWidget(
|
||||
@@ -91,4 +91,4 @@ private:
|
||||
|
||||
};
|
||||
|
||||
} // namespace Profile
|
||||
} // namespace HistoryView
|
Reference in New Issue
Block a user