Merge pull request #87688 from AThousandShips/what_is_this

Remove unnecessary `this->` expressions
This commit is contained in:
Rémi Verschelde
2024-01-29 13:18:09 +01:00
39 changed files with 160 additions and 160 deletions

View File

@@ -220,31 +220,31 @@ void EditorHelp::_class_desc_select(const String &p_select) {
if (tag == "method") {
topic = "class_method";
table = &this->method_line;
table = &method_line;
} else if (tag == "constructor") {
topic = "class_method";
table = &this->method_line;
table = &method_line;
} else if (tag == "operator") {
topic = "class_method";
table = &this->method_line;
table = &method_line;
} else if (tag == "member") {
topic = "class_property";
table = &this->property_line;
table = &property_line;
} else if (tag == "enum") {
topic = "class_enum";
table = &this->enum_line;
table = &enum_line;
} else if (tag == "signal") {
topic = "class_signal";
table = &this->signal_line;
table = &signal_line;
} else if (tag == "constant") {
topic = "class_constant";
table = &this->constant_line;
table = &constant_line;
} else if (tag == "annotation") {
topic = "class_annotation";
table = &this->annotation_line;
table = &annotation_line;
} else if (tag == "theme_item") {
topic = "theme_item";
table = &this->theme_property_line;
table = &theme_property_line;
} else {
return;
}