summaryrefslogtreecommitdiff
path: root/editor/doc
diff options
context:
space:
mode:
authorRafał Mikrut <mikrutrafal54@gmail.com>2019-11-20 16:22:16 +0100
committerRafał Mikrut <mikrutrafal54@gmail.com>2019-11-20 16:22:16 +0100
commit99d8626f4a313471410db421891e90fe768cd929 (patch)
treeb5e855e2c2a8b142af4fc01cfbc0a0257a01ccc5 /editor/doc
parent58ca9f17a2650bb381972210d1babbf34ac6819c (diff)
Fix some overflows and unitialized variables
Diffstat (limited to 'editor/doc')
-rw-r--r--editor/doc/doc_data.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/doc/doc_data.h b/editor/doc/doc_data.h
index 6d601f0dce..b722c324d6 100644
--- a/editor/doc/doc_data.h
+++ b/editor/doc/doc_data.h
@@ -78,6 +78,9 @@ public:
bool operator<(const PropertyDoc &p_prop) const {
return name < p_prop.name;
}
+ PropertyDoc() {
+ overridden = false;
+ }
};
struct ClassDoc {