Connect CodeHighlighter with TextEdit without friend-access

This commit is contained in:
Yuri Sizov
2023-09-19 14:36:38 +02:00
parent 571cd0eb79
commit fee1fb8290
3 changed files with 7 additions and 3 deletions

View File

@ -41,8 +41,6 @@
class TextEdit : public Control {
GDCLASS(TextEdit, Control);
friend class CodeHighlighter;
public:
/* Edit Actions. */
enum EditAction {
@ -1029,6 +1027,8 @@ public:
void set_draw_spaces(bool p_enabled);
bool is_drawing_spaces() const;
Color get_font_color() const;
TextEdit(const String &p_placeholder = String());
};