diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-05-02 17:45:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-02 17:45:13 +0200 |
commit | 78193788d0e779e1471f632bae61adad4adbc078 (patch) | |
tree | 6e1d28ad398befd964bca92e2bd77dba8a802d76 /editor/plugins/asset_library_editor_plugin.h | |
parent | 652650c10c162a9d1e65099aa00bc4bf534a5bad (diff) | |
parent | c273ddc3eefce78f8eed86dbc71fffd1b0443e2a (diff) |
Merge pull request #59895 from akien-mga/clang-tidy
Diffstat (limited to 'editor/plugins/asset_library_editor_plugin.h')
-rw-r--r-- | editor/plugins/asset_library_editor_plugin.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/editor/plugins/asset_library_editor_plugin.h b/editor/plugins/asset_library_editor_plugin.h index 96830c31fd..65c8398558 100644 --- a/editor/plugins/asset_library_editor_plugin.h +++ b/editor/plugins/asset_library_editor_plugin.h @@ -60,9 +60,9 @@ class EditorAssetLibraryItem : public PanelContainer { TextureRect *stars[5]; Label *price = nullptr; - int asset_id; - int category_id; - int author_id; + int asset_id = 0; + int category_id = 0; + int author_id = 0; void _asset_clicked(); void _category_clicked(); @@ -102,7 +102,7 @@ class EditorAssetLibraryItemDescription : public ConfirmationDialog { void set_image(int p_type, int p_index, const Ref<Texture2D> &p_image); - int asset_id; + int asset_id = 0; String download_url; String title; String sha256; @@ -146,7 +146,7 @@ class EditorAssetLibraryItemDownload : public MarginContainer { int prev_status; - int asset_id; + int asset_id = 0; bool external_install; |