diff options
author | Muller-Castro <37383316+Muller-Castro@users.noreply.github.com> | 2024-02-15 13:25:58 -0300 |
---|---|---|
committer | Muller-Castro <37383316+Muller-Castro@users.noreply.github.com> | 2024-02-26 15:28:15 -0300 |
commit | 1638c1b28f4b79546864872ef25b3c28f4860b56 (patch) | |
tree | dacb36ef5b2f92dae0ccab7b40afaeeedf432ae5 /editor/plugins/tiles/atlas_merging_dialog.h | |
parent | bb6b06c81343073f10cbbd2af515cf0dac1e6549 (diff) | |
download | redot-engine-1638c1b28f4b79546864872ef25b3c28f4860b56.tar.gz |
Add const lvalue ref to editor/* container parameters
Diffstat (limited to 'editor/plugins/tiles/atlas_merging_dialog.h')
-rw-r--r-- | editor/plugins/tiles/atlas_merging_dialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/tiles/atlas_merging_dialog.h b/editor/plugins/tiles/atlas_merging_dialog.h index 2517db2ccd..83389c2e29 100644 --- a/editor/plugins/tiles/atlas_merging_dialog.h +++ b/editor/plugins/tiles/atlas_merging_dialog.h @@ -64,9 +64,9 @@ private: void _property_changed(const StringName &p_property, const Variant &p_value, const String &p_field, bool p_changing); - void _generate_merged(Vector<Ref<TileSetAtlasSource>> p_atlas_sources, int p_max_columns); + void _generate_merged(const Vector<Ref<TileSetAtlasSource>> &p_atlas_sources, int p_max_columns); void _update_texture(); - void _merge_confirmed(String p_path); + void _merge_confirmed(const String &p_path); protected: virtual void ok_pressed() override; |