mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:17:44 +00:00
LibGUI: Remove unused variables in AbstractTableView::mousedown_event()
This commit is contained in:
parent
0b9d765f6b
commit
cd2c82a380
1 changed files with 0 additions and 3 deletions
|
@ -178,9 +178,6 @@ void AbstractTableView::mousedown_event(MouseEvent& event)
|
||||||
if (event.button() != MouseButton::Left)
|
if (event.button() != MouseButton::Left)
|
||||||
return AbstractView::mousedown_event(event);
|
return AbstractView::mousedown_event(event);
|
||||||
|
|
||||||
auto adjusted_position = this->adjusted_position(event.position());
|
|
||||||
Gfx::IntPoint horizontally_adjusted_position(adjusted_position.x(), event.position().y());
|
|
||||||
|
|
||||||
bool is_toggle;
|
bool is_toggle;
|
||||||
auto index = index_at_event_position(event.position(), is_toggle);
|
auto index = index_at_event_position(event.position(), is_toggle);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue