1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:07:45 +00:00

LibGUI: Fix typo in Splitter's resizee Getter/Setter

This commit is contained in:
thankyouverycool 2023-08-12 20:25:46 -04:00 committed by Andreas Kling
parent a0a1411ec9
commit 1ea24c38b4
2 changed files with 7 additions and 7 deletions

View file

@ -35,8 +35,8 @@ protected:
virtual void did_layout() override;
virtual void custom_layout() override;
OpportunisticResizee opportunisitic_resizee() const { return m_opportunistic_resizee; }
void set_opportunisitic_resizee(OpportunisticResizee resizee) { m_opportunistic_resizee = resizee; }
OpportunisticResizee opportunistic_resizee() const { return m_opportunistic_resizee; }
void set_opportunistic_resizee(OpportunisticResizee resizee) { m_opportunistic_resizee = resizee; }
private:
void override_cursor(bool do_override);