summaryrefslogtreecommitdiffstats
path: root/editor/find_in_files.h
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2022-02-15 08:56:58 -0600
committerAaron Franke <arnfranke@yahoo.com>2022-03-12 13:34:06 -0600
commit918b09cabc39dbf13bed2406da56035341ac1cf4 (patch)
tree20989f8c374745f579f88c0dd925b31fa9b1ba55 /editor/find_in_files.h
parentd7019de7e3c416e5492d1508b39c9b25adc2483a (diff)
downloadredot-engine-918b09cabc39dbf13bed2406da56035341ac1cf4.tar.gz
Initialize bools in the headers in editor
Diffstat (limited to 'editor/find_in_files.h')
-rw-r--r--editor/find_in_files.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/find_in_files.h b/editor/find_in_files.h
index 1b6666b554..cf14f3d5c3 100644
--- a/editor/find_in_files.h
+++ b/editor/find_in_files.h
@@ -210,7 +210,7 @@ private:
ProgressBar *_progress_bar;
Map<String, TreeItem *> _file_items;
Map<TreeItem *, Result> _result_items;
- bool _with_replace;
+ bool _with_replace = false;
HBoxContainer *_replace_container;
LineEdit *_replace_line_edit;