diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-11-28 11:00:48 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-01-19 12:50:49 +0200 |
commit | db7d8c2d87a9704f7404398815c9d686b9a099b9 (patch) | |
tree | 0b3d919af26b06f6072bffd41ac3dbe709b9d379 /core/io/xml_parser.h | |
parent | cd0a9ccdfde05963d1b544b773662149f585da0d (diff) | |
download | redot-engine-db7d8c2d87a9704f7404398815c9d686b9a099b9.tar.gz |
[GDExtension] Expose some low level functions and String operators.
Diffstat (limited to 'core/io/xml_parser.h')
-rw-r--r-- | core/io/xml_parser.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/io/xml_parser.h b/core/io/xml_parser.h index b4ae5c93b6..b96478c7a5 100644 --- a/core/io/xml_parser.h +++ b/core/io/xml_parser.h @@ -109,8 +109,8 @@ public: String get_attribute_name(int p_idx) const; String get_attribute_value(int p_idx) const; bool has_attribute(const String &p_name) const; - String get_attribute_value(const String &p_name) const; - String get_attribute_value_safe(const String &p_name) const; // do not print error if doesn't exist + String get_named_attribute_value(const String &p_name) const; + String get_named_attribute_value_safe(const String &p_name) const; // do not print error if doesn't exist bool is_empty() const; int get_current_line() const; |