mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Updated function argument names
This commit is contained in:
parent
5052cb2b91
commit
428f03cf06
74 changed files with 195 additions and 194 deletions
|
|
@ -66,7 +66,7 @@ class EditorAutoloadSettings : public VBoxContainer {
|
|||
EditorLineEditFileChooser *autoload_add_path;
|
||||
LineEdit *autoload_add_name;
|
||||
|
||||
bool _autoload_name_is_valid(const String &p_string, String *r_error = NULL);
|
||||
bool _autoload_name_is_valid(const String &p_name, String *r_error = NULL);
|
||||
|
||||
void _autoload_add();
|
||||
void _autoload_selected();
|
||||
|
|
@ -74,9 +74,9 @@ class EditorAutoloadSettings : public VBoxContainer {
|
|||
void _autoload_button_pressed(Object *p_item, int p_column, int p_button);
|
||||
void _autoload_file_callback(const String &p_path);
|
||||
|
||||
Variant get_drag_data_fw(const Point2 &p_point, Control *p_from);
|
||||
bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const;
|
||||
void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from);
|
||||
Variant get_drag_data_fw(const Point2 &p_point, Control *p_control);
|
||||
bool can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_control) const;
|
||||
void drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_control);
|
||||
|
||||
protected:
|
||||
void _notification(int p_what);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue