mirror of
https://github.com/vale981/tdesktop
synced 2025-03-05 17:51:41 -05:00
Fix build for Xcode.
This commit is contained in:
parent
83bc6fb39c
commit
4caf26d069
3 changed files with 5 additions and 1 deletions
|
@ -1555,3 +1555,5 @@ void DialogsWidget::onDialogMoved(int movedFrom, int movedTo) {
|
|||
_scroll->scrollToY(st + st::dialogsRowHeight);
|
||||
}
|
||||
}
|
||||
|
||||
DialogsWidget::~DialogsWidget() = default;
|
||||
|
|
|
@ -91,6 +91,8 @@ public:
|
|||
|
||||
void notify_historyMuteUpdated(History *history);
|
||||
|
||||
~DialogsWidget();
|
||||
|
||||
signals:
|
||||
void cancelled();
|
||||
|
||||
|
|
|
@ -185,7 +185,7 @@ void ConnectionState::Widget::ProxyIcon::paintEvent(QPaintEvent *e) {
|
|||
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)
|
||||
&& (useProxy == other.useProxy)
|
||||
&& (underCursor == other.underCursor)
|
||||
|
|
Loading…
Add table
Reference in a new issue