mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:38:10 +00:00
LibGUI: Remove declarations for non-existent methods
This commit is contained in:
parent
12673d0e24
commit
88bbbe12ba
4 changed files with 0 additions and 6 deletions
|
@ -56,8 +56,6 @@ protected:
|
||||||
explicit AbstractSlider(Orientation = Orientation::Vertical);
|
explicit AbstractSlider(Orientation = Orientation::Vertical);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void set_knob_hovered(bool);
|
|
||||||
|
|
||||||
int m_value { 0 };
|
int m_value { 0 };
|
||||||
int m_min { 0 };
|
int m_min { 0 };
|
||||||
int m_max { 0 };
|
int m_max { 0 };
|
||||||
|
|
|
@ -20,8 +20,6 @@ class MultiView final : public GUI::StackWidget {
|
||||||
public:
|
public:
|
||||||
virtual ~MultiView() override = default;
|
virtual ~MultiView() override = default;
|
||||||
|
|
||||||
void refresh();
|
|
||||||
|
|
||||||
Function<void()> on_selection_change;
|
Function<void()> on_selection_change;
|
||||||
Function<void(ModelIndex const&)> on_activation;
|
Function<void(ModelIndex const&)> on_activation;
|
||||||
Function<void(ModelIndex const&)> on_selection;
|
Function<void(ModelIndex const&)> on_selection;
|
||||||
|
|
|
@ -306,7 +306,6 @@ private:
|
||||||
virtual void automatic_scrolling_timer_did_fire() override;
|
virtual void automatic_scrolling_timer_did_fire() override;
|
||||||
|
|
||||||
void create_actions();
|
void create_actions();
|
||||||
void paint_ruler(Painter&);
|
|
||||||
void update_content_size();
|
void update_content_size();
|
||||||
int fixed_glyph_width() const;
|
int fixed_glyph_width() const;
|
||||||
|
|
||||||
|
|
|
@ -122,7 +122,6 @@ private:
|
||||||
void calculate_document_range(TextEditor&);
|
void calculate_document_range(TextEditor&);
|
||||||
void calculate_line_range(TextEditor&, bool normalize_for_position);
|
void calculate_line_range(TextEditor&, bool normalize_for_position);
|
||||||
void calculate_word_range(VimCursor&, int amount, bool normalize_for_position);
|
void calculate_word_range(VimCursor&, int amount, bool normalize_for_position);
|
||||||
void calculate_WORD_range(VimCursor&, int amount, bool normalize_for_position);
|
|
||||||
void calculate_character_range(VimCursor&, int amount, bool normalize_for_position);
|
void calculate_character_range(VimCursor&, int amount, bool normalize_for_position);
|
||||||
void calculate_find_range(VimCursor&, int amount);
|
void calculate_find_range(VimCursor&, int amount);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue