diff options
author | Nathan Franke <natfra@pm.me> | 2020-10-29 05:01:28 -0500 |
---|---|---|
committer | Nathan Franke <natfra@pm.me> | 2021-04-11 23:25:38 -0500 |
commit | 2a8c59c171e609d739dcc59d15e3e205dbf47cde (patch) | |
tree | c84f0fbf2fc87ce29338f31dc4a86c7bcc0d5253 /scene/gui/control.h | |
parent | 4a1f2dcb746af43dcebeb241276adfb5d99c1020 (diff) | |
download | redot-engine-2a8c59c171e609d739dcc59d15e3e205dbf47cde.tar.gz |
Use Array for node configuration warnings
Previously, the warnings were passed as a string and delimitation of which were hard coded at each implementation.
Diffstat (limited to 'scene/gui/control.h')
-rw-r--r-- | scene/gui/control.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/control.h b/scene/gui/control.h index 184b2df6d3..1f397df589 100644 --- a/scene/gui/control.h +++ b/scene/gui/control.h @@ -524,7 +524,7 @@ public: bool is_visibility_clip_disabled() const; virtual void get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const override; - virtual String get_configuration_warning() const override; + TypedArray<String> get_configuration_warnings() const override; Control() {} }; |