PoolVector is gone, replaced by Vector
Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector<Type>`.
This commit is contained in:
parent
fb8c93c10b
commit
3205a92ad8
406 changed files with 5314 additions and 8271 deletions
|
|
@ -52,13 +52,13 @@ class Theme : public Resource {
|
|||
HashMap<StringName, HashMap<StringName, Color> > color_map;
|
||||
HashMap<StringName, HashMap<StringName, int> > constant_map;
|
||||
|
||||
PoolVector<String> _get_icon_list(const String &p_type) const;
|
||||
PoolVector<String> _get_stylebox_list(const String &p_type) const;
|
||||
PoolVector<String> _get_stylebox_types(void) const;
|
||||
PoolVector<String> _get_font_list(const String &p_type) const;
|
||||
PoolVector<String> _get_color_list(const String &p_type) const;
|
||||
PoolVector<String> _get_constant_list(const String &p_type) const;
|
||||
PoolVector<String> _get_type_list(const String &p_type) const;
|
||||
Vector<String> _get_icon_list(const String &p_type) const;
|
||||
Vector<String> _get_stylebox_list(const String &p_type) const;
|
||||
Vector<String> _get_stylebox_types(void) const;
|
||||
Vector<String> _get_font_list(const String &p_type) const;
|
||||
Vector<String> _get_color_list(const String &p_type) const;
|
||||
Vector<String> _get_constant_list(const String &p_type) const;
|
||||
Vector<String> _get_type_list(const String &p_type) const;
|
||||
|
||||
protected:
|
||||
bool _set(const StringName &p_name, const Variant &p_value);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue