mirror of https://github.com/procxx/kepka.git
Version 1.1.10: Fix build for Xcode and GCC.
This commit is contained in:
parent
91a6853f3c
commit
6d3a6d20b5
|
@ -399,12 +399,6 @@ void FilterBox::refreshButtons() {
|
||||||
addButton(langFactory(lng_cancel), [this] { closeBox(); });
|
addButton(langFactory(lng_cancel), [this] { closeBox(); });
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename Widget>
|
|
||||||
QPointer<Widget> FilterBox::addControl(object_ptr<Widget> row) {
|
|
||||||
Expects(_inner != nullptr);
|
|
||||||
return _inner->addControl(std::move(row));
|
|
||||||
}
|
|
||||||
|
|
||||||
void FilterBox::resizeToContent() {
|
void FilterBox::resizeToContent() {
|
||||||
_inner->resizeToWidth(st::boxWideWidth);
|
_inner->resizeToWidth(st::boxWideWidth);
|
||||||
setDimensions(_inner->width(), _inner->height());
|
setDimensions(_inner->width(), _inner->height());
|
||||||
|
|
|
@ -484,7 +484,7 @@ void GroupMembersWidget::setItemFlags(Item *item, ChannelData *megagroup) {
|
||||||
}
|
}
|
||||||
if (item->peer->isSelf()) {
|
if (item->peer->isSelf()) {
|
||||||
item->hasRemoveLink = false;
|
item->hasRemoveLink = false;
|
||||||
} else if (megagroup->amCreator() || megagroup->canBanMembers() && ((adminState == AdminState::None) || adminCanEdit)) {
|
} else if (megagroup->amCreator() || (megagroup->canBanMembers() && ((adminState == AdminState::None) || adminCanEdit))) {
|
||||||
item->hasRemoveLink = true;
|
item->hasRemoveLink = true;
|
||||||
} else {
|
} else {
|
||||||
item->hasRemoveLink = false;
|
item->hasRemoveLink = false;
|
||||||
|
|
Loading…
Reference in New Issue