Spreadsheet: Rename variables to better describe their function

Rename some variables relating to the drag-and-cut operations as
well as the select operation so that they are more clear.
This commit is contained in:
martinfalisse 2022-02-08 15:38:17 +01:00 committed by Ali Mohammad Pur
commit 8a7d2c3336
Notes: sideshowbarker 2024-07-17 17:08:27 +09:00
2 changed files with 10 additions and 10 deletions

View file

@ -78,9 +78,9 @@ private:
virtual void mouseup_event(GUI::MouseEvent&) override;
virtual void drop_event(GUI::DropEvent&) override;
bool m_should_intercept_drag { false };
bool m_has_committed_to_dragging { false };
bool m_is_dragging_for_select { false };
bool m_is_dragging_for_copy { false };
bool m_has_committed_to_cutting { false };
bool m_is_hovering_extend_zone { false };
bool m_is_hovering_cut_zone { false };
GUI::ModelIndex m_starting_selection_index;