diff options
author | crupest <crupest@outlook.com> | 2021-11-17 18:53:48 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-11-17 18:53:48 +0800 |
commit | 7be210036e363f2105ace761451448507d4b06d8 (patch) | |
tree | f1facc5899f35dd02efdb9e0aadd26155d5499d5 /include/cru/ui/controls/Container.hpp | |
parent | 17e35c8ebb51c2679421330056615fa8678b939e (diff) | |
download | cru-7be210036e363f2105ace761451448507d4b06d8.tar.gz cru-7be210036e363f2105ace761451448507d4b06d8.tar.bz2 cru-7be210036e363f2105ace761451448507d4b06d8.zip |
...
Diffstat (limited to 'include/cru/ui/controls/Container.hpp')
-rw-r--r-- | include/cru/ui/controls/Container.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cru/ui/controls/Container.hpp b/include/cru/ui/controls/Container.hpp index 18958837..f992c152 100644 --- a/include/cru/ui/controls/Container.hpp +++ b/include/cru/ui/controls/Container.hpp @@ -3,7 +3,7 @@ namespace cru::ui::controls { class Container : public ContentControl { - static constexpr std::u16string_view control_type = u"Container"; + static constexpr StringView control_type = u"Container"; protected: Container(); @@ -15,7 +15,7 @@ class Container : public ContentControl { ~Container() override; public: - std::u16string_view GetControlType() const final { return control_type; } + String GetControlType() const final { return control_type.ToString(); } render::RenderObject* GetRenderObject() const override; |