diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-19 13:23:45 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-19 13:23:45 +0100 |
commit | f6c662264e0c6d9a5b14d7852bc93338cb62b5ac (patch) | |
tree | 3ddd70a9de123be9ed0c67d9273731d60848d4e2 /core/io/xml_parser.h | |
parent | d3665effd5024b10fa9a18c5c193f00ba6fc6279 (diff) | |
parent | db7d8c2d87a9704f7404398815c9d686b9a099b9 (diff) |
Merge pull request #69288 from bruvzg/gde_low_level_funcs
[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; |