mirror of
https://github.com/telegramdesktop/tdesktop
synced 2024-12-27 09:03:02 +00:00
Fix build for Xcode.
This commit is contained in:
parent
83bc6fb39c
commit
4caf26d069
@ -1555,3 +1555,5 @@ void DialogsWidget::onDialogMoved(int movedFrom, int movedTo) {
|
|||||||
_scroll->scrollToY(st + st::dialogsRowHeight);
|
_scroll->scrollToY(st + st::dialogsRowHeight);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
DialogsWidget::~DialogsWidget() = default;
|
||||||
|
@ -91,6 +91,8 @@ public:
|
|||||||
|
|
||||||
void notify_historyMuteUpdated(History *history);
|
void notify_historyMuteUpdated(History *history);
|
||||||
|
|
||||||
|
~DialogsWidget();
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void cancelled();
|
void cancelled();
|
||||||
|
|
||||||
|
@ -185,7 +185,7 @@ void ConnectionState::Widget::ProxyIcon::paintEvent(QPaintEvent *e) {
|
|||||||
p.drawPixmap(0, 0, _toggled ? _cacheOn : _cacheOff);
|
p.drawPixmap(0, 0, _toggled ? _cacheOn : _cacheOff);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ConnectionState::Widget::State::operator==(const State &other) const {
|
bool ConnectionState::State::operator==(const State &other) const {
|
||||||
return (type == other.type)
|
return (type == other.type)
|
||||||
&& (useProxy == other.useProxy)
|
&& (useProxy == other.useProxy)
|
||||||
&& (underCursor == other.underCursor)
|
&& (underCursor == other.underCursor)
|
||||||
|
Loading…
Reference in New Issue
Block a user