mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 13:49:16 +00:00
LibGUI: Make AbstractView::is_searching protected
This commit is contained in:
parent
000c74e6a8
commit
e96081ef8f
Notes:
sideshowbarker
2024-07-18 04:27:03 +09:00
Author: https://github.com/d1823
Commit: e96081ef8f
Pull-request: https://github.com/SerenityOS/serenity/pull/9790
Reviewed-by: https://github.com/alimpfard ✅
Reviewed-by: https://github.com/kleinesfilmroellchen ✅
1 changed files with 1 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue