From f3313ba4cd4954853b56c806b7bb3872faf5afcb Mon Sep 17 00:00:00 2001 From: "George L. Albany" Date: Tue, 14 Mar 2023 08:00:29 +0000 Subject: [PATCH] Remove methods in header removed in c7eb814 c7eb814 missed these methods in the RichTextLabel's header Remove set_override_selected_font_color from rich_text_label.h Remove is_override_selected_font_color from rich_text_label.h c7eb814 missed these methods in the TextEdit's header Remove set_override_selected_font_color from text_edit.h Remove is_override_selected_font_color from text_edit.h --- scene/gui/rich_text_label.h | 3 --- scene/gui/text_edit.h | 3 --- 2 files changed, 6 deletions(-) diff --git a/scene/gui/rich_text_label.h b/scene/gui/rich_text_label.h index 1dae8b75ca1a..c67fa8e63889 100644 --- a/scene/gui/rich_text_label.h +++ b/scene/gui/rich_text_label.h @@ -623,9 +623,6 @@ class RichTextLabel : public Control { void set_hint_underline(bool p_underline); bool is_hint_underlined() const; - void set_override_selected_font_color(bool p_override_selected_font_color); - bool is_overriding_selected_font_color() const; - void set_scroll_active(bool p_active); bool is_scroll_active() const; diff --git a/scene/gui/text_edit.h b/scene/gui/text_edit.h index a084fa3833cc..28300f6ee258 100644 --- a/scene/gui/text_edit.h +++ b/scene/gui/text_edit.h @@ -851,9 +851,6 @@ class TextEdit : public Control { void set_drag_and_drop_selection_enabled(const bool p_enabled); bool is_drag_and_drop_selection_enabled() const; - void set_override_selected_font_color(bool p_override_selected_font_color); - bool is_overriding_selected_font_color() const; - void set_selection_mode(SelectionMode p_mode, int p_line = -1, int p_column = -1, int p_caret = 0); SelectionMode get_selection_mode() const;