diff options
| author | kobewi <kobewi4e@gmail.com> | 2021-05-15 23:48:59 +0200 |
|---|---|---|
| committer | kobewi <kobewi4e@gmail.com> | 2021-06-12 00:55:52 +0200 |
| commit | 7ff135b0158e0b5dd7a85d98aecd7ff0975e7e43 (patch) | |
| tree | 377e3069a6ae11e438d6a4c716f307f95548068f /editor/plugins/sprite_frames_editor_plugin.cpp | |
| parent | 530e069bc3efef4de535a1973aa016698ffbe334 (diff) | |
| download | redot-engine-7ff135b0158e0b5dd7a85d98aecd7ff0975e7e43.tar.gz | |
Consistently prefix bound virtual methods with _
Diffstat (limited to 'editor/plugins/sprite_frames_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/sprite_frames_editor_plugin.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/plugins/sprite_frames_editor_plugin.cpp b/editor/plugins/sprite_frames_editor_plugin.cpp index 59bc8f9e55..a5a3d624ec 100644 --- a/editor/plugins/sprite_frames_editor_plugin.cpp +++ b/editor/plugins/sprite_frames_editor_plugin.cpp @@ -964,9 +964,9 @@ void SpriteFramesEditor::drop_data_fw(const Point2 &p_point, const Variant &p_da void SpriteFramesEditor::_bind_methods() { ClassDB::bind_method(D_METHOD("_update_library", "skipsel"), &SpriteFramesEditor::_update_library, DEFVAL(false)); - ClassDB::bind_method(D_METHOD("get_drag_data_fw"), &SpriteFramesEditor::get_drag_data_fw); - ClassDB::bind_method(D_METHOD("can_drop_data_fw"), &SpriteFramesEditor::can_drop_data_fw); - ClassDB::bind_method(D_METHOD("drop_data_fw"), &SpriteFramesEditor::drop_data_fw); + ClassDB::bind_method(D_METHOD("_get_drag_data_fw"), &SpriteFramesEditor::get_drag_data_fw); + ClassDB::bind_method(D_METHOD("_can_drop_data_fw"), &SpriteFramesEditor::can_drop_data_fw); + ClassDB::bind_method(D_METHOD("_drop_data_fw"), &SpriteFramesEditor::drop_data_fw); } SpriteFramesEditor::SpriteFramesEditor() { |
