summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2023-01-27 17:08:29 +0000
committerLinus Groh <mail@linusgroh.de>2023-01-27 20:33:18 +0000
commit88bbbe12ba6fca1a7e2fc120873b0e4783611e53 (patch)
tree0e7b5f27c810c8f82cf6a5564aa47911006782af
parent12673d0e240238c817cab04cb704213613fca222 (diff)
downloadserenity-88bbbe12ba6fca1a7e2fc120873b0e4783611e53.zip
LibGUI: Remove declarations for non-existent methods
-rw-r--r--Userland/Libraries/LibGUI/AbstractSlider.h2
-rw-r--r--Userland/Libraries/LibGUI/MultiView.h2
-rw-r--r--Userland/Libraries/LibGUI/TextEditor.h1
-rw-r--r--Userland/Libraries/LibGUI/VimEditingEngine.h1
4 files changed, 0 insertions, 6 deletions
diff --git a/Userland/Libraries/LibGUI/AbstractSlider.h b/Userland/Libraries/LibGUI/AbstractSlider.h
index 87103e332b..671cef82b8 100644
--- a/Userland/Libraries/LibGUI/AbstractSlider.h
+++ b/Userland/Libraries/LibGUI/AbstractSlider.h
@@ -56,8 +56,6 @@ protected:
explicit AbstractSlider(Orientation = Orientation::Vertical);
private:
- void set_knob_hovered(bool);
-
int m_value { 0 };
int m_min { 0 };
int m_max { 0 };
diff --git a/Userland/Libraries/LibGUI/MultiView.h b/Userland/Libraries/LibGUI/MultiView.h
index 3bcf52623f..b7f44fdae8 100644
--- a/Userland/Libraries/LibGUI/MultiView.h
+++ b/Userland/Libraries/LibGUI/MultiView.h
@@ -20,8 +20,6 @@ class MultiView final : public GUI::StackWidget {
public:
virtual ~MultiView() override = default;
- void refresh();
-
Function<void()> on_selection_change;
Function<void(ModelIndex const&)> on_activation;
Function<void(ModelIndex const&)> on_selection;
diff --git a/Userland/Libraries/LibGUI/TextEditor.h b/Userland/Libraries/LibGUI/TextEditor.h
index 5aac3594ec..8a9773cc89 100644
--- a/Userland/Libraries/LibGUI/TextEditor.h
+++ b/Userland/Libraries/LibGUI/TextEditor.h
@@ -306,7 +306,6 @@ private:
virtual void automatic_scrolling_timer_did_fire() override;
void create_actions();
- void paint_ruler(Painter&);
void update_content_size();
int fixed_glyph_width() const;
diff --git a/Userland/Libraries/LibGUI/VimEditingEngine.h b/Userland/Libraries/LibGUI/VimEditingEngine.h
index a5ce881b10..de8ec01903 100644
--- a/Userland/Libraries/LibGUI/VimEditingEngine.h
+++ b/Userland/Libraries/LibGUI/VimEditingEngine.h
@@ -122,7 +122,6 @@ private:
void calculate_document_range(TextEditor&);
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_character_range(VimCursor&, int amount, bool normalize_for_position);
void calculate_find_range(VimCursor&, int amount);