Renamed to SortedSets instead of Sets.

This commit is contained in:
2022-02-08 11:12:17 +08:00
parent f278dfc85a
commit 5712efd7a5
11 changed files with 16 additions and 16 deletions

View File

@@ -2,7 +2,7 @@
#define HGL_GUI_LAYOUT_INCLUDE
#include<hgl/gui/Widget.h>
#include<hgl/type/Sets.h>
#include<hgl/type/SortedSets.h>
namespace hgl
{
namespace gui
@@ -14,7 +14,7 @@ namespace hgl
{
protected:
Sets<Widget *> widgets_set;
SortedSets<Widget *> widgets_set;
public: