diff options
| author | crupest <crupest@outlook.com> | 2022-02-08 16:53:51 +0800 |
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2022-02-08 16:53:51 +0800 |
| commit | 74bb9cd27242b9320f99ff4d2b50c3051576cc14 (patch) | |
| tree | 744bac5799c593d1d6f81e7b09581bea626f2cde /include/cru/ui/components | |
| parent | b90c398de829d1ba5329651d75bae82f5e4085fe (diff) | |
| download | cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.tar.gz cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.tar.bz2 cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.zip | |
...
Diffstat (limited to 'include/cru/ui/components')
| -rw-r--r-- | include/cru/ui/components/Component.h (renamed from include/cru/ui/components/Component.hpp) | 2 | ||||
| -rw-r--r-- | include/cru/ui/components/Menu.h (renamed from include/cru/ui/components/Menu.hpp) | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/include/cru/ui/components/Component.hpp b/include/cru/ui/components/Component.h index 4cbc3791..0b871dc4 100644 --- a/include/cru/ui/components/Component.hpp +++ b/include/cru/ui/components/Component.h @@ -1,5 +1,5 @@ #pragma once -#include "../Base.hpp" +#include "../Base.h" namespace cru::ui::components { // In destructor, component should check all owned controls whether it is diff --git a/include/cru/ui/components/Menu.hpp b/include/cru/ui/components/Menu.h index 9b60eb02..32936f84 100644 --- a/include/cru/ui/components/Menu.hpp +++ b/include/cru/ui/components/Menu.h @@ -1,11 +1,11 @@ #pragma once -#include "Component.hpp" -#include "cru/common/Base.hpp" -#include "cru/ui/controls/Button.hpp" -#include "cru/ui/controls/Control.hpp" -#include "cru/ui/controls/FlexLayout.hpp" -#include "cru/ui/controls/Popup.hpp" -#include "cru/ui/controls/TextBlock.hpp" +#include "Component.h" +#include "cru/common/Base.h" +#include "cru/ui/controls/Button.h" +#include "cru/ui/controls/Control.h" +#include "cru/ui/controls/FlexLayout.h" +#include "cru/ui/controls/Popup.h" +#include "cru/ui/controls/TextBlock.h" #include <functional> #include <vector> |
