1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:07:35 +00:00

LibGUI: Unify naming of searching timer related members

This commit is contained in:
Dawid Wolosowicz 2021-09-04 15:05:41 +02:00 committed by Ali Mohammad Pur
parent 9225b45c2d
commit b775b1c199
2 changed files with 24 additions and 24 deletions

View file

@ -163,8 +163,8 @@ protected:
void update_edit_widget_position();
bool is_searching() const { return !m_highlighted_search.is_null(); }
void cancel_searching();
void start_searching_timer();
void stop_highlighted_search_timer();
void start_highlighted_search_timer();
void do_search(String&&);
ModelIndex drop_candidate_index() const { return m_drop_candidate_index; }
@ -193,7 +193,7 @@ private:
RefPtr<Model> m_model;
ModelSelection m_selection;
String m_highlighted_search;
RefPtr<Core::Timer> m_searching_timer;
RefPtr<Core::Timer> m_highlighted_search_timer;
SelectionBehavior m_selection_behavior { SelectionBehavior::SelectItems };
SelectionMode m_selection_mode { SelectionMode::SingleSelection };
unsigned m_edit_triggers { EditTrigger::DoubleClicked | EditTrigger::EditKeyPressed };