mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:07:35 +00:00
PixelPaint: Fix const correctness of Selection::in_interactive_selection
This commit is contained in:
parent
058ab81c24
commit
6e006be9e6
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ public:
|
|||
void begin_interactive_selection() { m_in_interactive_selection = true; }
|
||||
void end_interactive_selection() { m_in_interactive_selection = false; }
|
||||
|
||||
bool in_interactive_selection() { return m_in_interactive_selection; }
|
||||
bool in_interactive_selection() const { return m_in_interactive_selection; }
|
||||
|
||||
void add_client(SelectionClient&);
|
||||
void remove_client(SelectionClient&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue