Skip to content

Commit

Permalink
Version 5.6.3: Fix build with Xcode.
Browse files Browse the repository at this point in the history
  • Loading branch information
john-preston committed Oct 15, 2024
1 parent 598f08d commit 754d467
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Telegram/SourceFiles/iv/iv_delegate_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class DelegateImpl final : public Delegate {
[[nodiscard]] QRect ivGeometry() const override;
void ivSaveGeometry(not_null<Ui::RpWindow*> window) override;

[[nodiscard]] int ivZoom() const;
[[nodiscard]] rpl::producer<int> ivZoomValue() const;
void ivSetZoom(int value);
[[nodiscard]] int ivZoom() const override;
[[nodiscard]] rpl::producer<int> ivZoomValue() const override;
void ivSetZoom(int value) override;

private:
QPointer<QWidget> _lastSourceWindow;
Expand Down

0 comments on commit 754d467

Please sign in to comment.