diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-06 11:15:00 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-06 11:20:27 +0200 |
commit | 7b5d1ea5b9e5eb1d5b4dfccd3f3fe90b3b134444 (patch) | |
tree | 7b8a04cd05ea1886b602f28d25292e869c00b0d7 /editor/editor_properties_array_dict.h | |
parent | c36735ef9779cf71d1ce749927faee53f08263a8 (diff) | |
download | redot-engine-7b5d1ea5b9e5eb1d5b4dfccd3f3fe90b3b134444.tar.gz |
Fix various uninitialized member pointers
Using this command:
```
find -name "thirdparty" -prune -o -name "*.h" -exec sed -i {} -e '/return /! s/\t\([A-Za-z0-9_]* \*[A-Za-z0-9_]*\)\;/\t\1 = nullptr;/g' \;
```
And then reviewing the changes manually to discard the ones that don't
seem correct/safe/good (notably changes to `core` unions).
Diffstat (limited to 'editor/editor_properties_array_dict.h')
-rw-r--r-- | editor/editor_properties_array_dict.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_properties_array_dict.h b/editor/editor_properties_array_dict.h index 82aeebe14a..ae61418528 100644 --- a/editor/editor_properties_array_dict.h +++ b/editor/editor_properties_array_dict.h @@ -151,7 +151,7 @@ class EditorPropertyDictionary : public EditorProperty { Button *edit = nullptr; MarginContainer *container = nullptr; VBoxContainer *property_vbox = nullptr; - EditorSpinSlider *size_sliderv; + EditorSpinSlider *size_sliderv = nullptr; Button *button_add_item = nullptr; EditorPaginator *paginator = nullptr; |