diff options
author | Lightning_A <aaronjrecord@gmail.com> | 2021-06-16 10:24:34 -0600 |
---|---|---|
committer | Lightning_A <aaronjrecord@gmail.com> | 2021-06-16 10:32:22 -0600 |
commit | b6af2a29eb1f96518c89a35a6a50a6309673d9f0 (patch) | |
tree | 83014054a222c71409ba4760741b6dcfb12b7981 /core/string/ustring.h | |
parent | 48fe9c97948f44125e68f3b8f67eaaf032c763bd (diff) | |
download | redot-engine-b6af2a29eb1f96518c89a35a6a50a6309673d9f0.tar.gz |
Rename `is_valid_integer()` to `is_valid_int()`
Method from `String`
Diffstat (limited to 'core/string/ustring.h')
-rw-r--r-- | core/string/ustring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/string/ustring.h b/core/string/ustring.h index 82cd3e1667..ffb354d6e1 100644 --- a/core/string/ustring.h +++ b/core/string/ustring.h @@ -425,7 +425,7 @@ public: String validate_node_name() const; bool is_valid_identifier() const; - bool is_valid_integer() const; + bool is_valid_int() const; bool is_valid_float() const; bool is_valid_hex_number(bool p_with_prefix) const; bool is_valid_html_color() const; |