You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Use range iterators for RBSet in most cases
This commit is contained in:
@@ -143,8 +143,8 @@ void CustomPropertyEditor::_menu_option(int p_which) {
|
||||
}
|
||||
|
||||
file->clear_filters();
|
||||
for (RBSet<String>::Element *E = valid_extensions.front(); E; E = E->next()) {
|
||||
file->add_filter("*." + E->get() + " ; " + E->get().to_upper());
|
||||
for (const String &E : valid_extensions) {
|
||||
file->add_filter("*." + E + " ; " + E.to_upper());
|
||||
}
|
||||
|
||||
file->popup_file_dialog();
|
||||
@@ -890,8 +890,8 @@ bool CustomPropertyEditor::edit(Object *p_owner, const String &p_name, Variant::
|
||||
E = E->next();
|
||||
}
|
||||
|
||||
for (RBSet<String>::Element *j = valid_inheritors.front(); j; j = j->next()) {
|
||||
const String &t = j->get();
|
||||
for (const String &j : valid_inheritors) {
|
||||
const String &t = j;
|
||||
|
||||
bool is_custom_resource = false;
|
||||
Ref<Texture2D> icon;
|
||||
|
||||
Reference in New Issue
Block a user