diff options
Diffstat (limited to 'editor/doc/doc_data.cpp')
-rw-r--r-- | editor/doc/doc_data.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/doc/doc_data.cpp b/editor/doc/doc_data.cpp index 3c89e5d321..bfee66569a 100644 --- a/editor/doc/doc_data.cpp +++ b/editor/doc/doc_data.cpp @@ -214,11 +214,12 @@ void DocData::generate(bool p_basic_types) { ClassDB::get_class_list(&classes); classes.sort_custom<StringName::AlphCompare>(); - Set<StringName> setters_getters; bool skip_setter_getter_methods = true; while (classes.size()) { + Set<StringName> setters_getters; + String name = classes.front()->get(); String cname = name; if (cname.begins_with("_")) //proxy class |