mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibGUI: Make AbstractView::is_searching protected
This commit is contained in:
committed by
Ali Mohammad Pur
parent
000c74e6a8
commit
e96081ef8f
@@ -64,8 +64,6 @@ public:
|
||||
bool is_editable() const { return m_editable; }
|
||||
void set_editable(bool editable) { m_editable = editable; }
|
||||
|
||||
bool is_searching() const { return !m_searching.is_null(); }
|
||||
|
||||
bool is_searchable() const;
|
||||
void set_searchable(bool);
|
||||
|
||||
@@ -164,6 +162,7 @@ protected:
|
||||
void activate_selected();
|
||||
void update_edit_widget_position();
|
||||
|
||||
bool is_searching() const { return !m_searching.is_null(); }
|
||||
StringView searching() const { return m_searching; }
|
||||
void cancel_searching();
|
||||
void start_searching_timer();
|
||||
|
||||
Reference in New Issue
Block a user