From 45af29da8095af16729955117a165d23e77cd740 Mon Sep 17 00:00:00 2001 From: reduz Date: Thu, 19 May 2022 17:00:06 +0200 Subject: Add a new HashSet template * Intended to replace RBSet in most cases. * Optimized for iteration speed --- scene/gui/grid_container.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'scene/gui/grid_container.cpp') diff --git a/scene/gui/grid_container.cpp b/scene/gui/grid_container.cpp index 5d9484806b..6f8518a7b0 100644 --- a/scene/gui/grid_container.cpp +++ b/scene/gui/grid_container.cpp @@ -29,12 +29,13 @@ /*************************************************************************/ #include "grid_container.h" +#include "core/templates/rb_set.h" void GridContainer::_notification(int p_what) { switch (p_what) { case NOTIFICATION_SORT_CHILDREN: { - HashMap col_minw; // Max of min_width of all controls in each col (indexed by col). - HashMap row_minh; // Max of min_height of all controls in each row (indexed by row). + RBMap col_minw; // Max of min_width of all controls in each col (indexed by col). + RBMap row_minh; // Max of min_height of all controls in each row (indexed by row). RBSet col_expanded; // Columns which have the SIZE_EXPAND flag set. RBSet row_expanded; // Rows which have the SIZE_EXPAND flag set. @@ -261,8 +262,8 @@ void GridContainer::_bind_methods() { } Size2 GridContainer::get_minimum_size() const { - HashMap col_minw; - HashMap row_minh; + RBMap col_minw; + RBMap row_minh; int hsep = get_theme_constant(SNAME("h_separation")); int vsep = get_theme_constant(SNAME("v_separation")); -- cgit v1.2.3