aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/controls/container.hpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2019-12-13 01:02:47 +0800
committercrupest <crupest@outlook.com>2019-12-13 01:02:47 +0800
commit9110574bb51e9e2959842a7641f598d34c3cd847 (patch)
tree96ee1f5b3c40095e4e923fc763de0663ee6a01aa /include/cru/ui/controls/container.hpp
parentf2aa96fba0b72eeeadf5160ea5df2c8143ec8aa0 (diff)
downloadcru-9110574bb51e9e2959842a7641f598d34c3cd847.tar.gz
cru-9110574bb51e9e2959842a7641f598d34c3cd847.tar.bz2
cru-9110574bb51e9e2959842a7641f598d34c3cd847.zip
...
Diffstat (limited to 'include/cru/ui/controls/container.hpp')
-rw-r--r--include/cru/ui/controls/container.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cru/ui/controls/container.hpp b/include/cru/ui/controls/container.hpp
index 3c877067..efc099f7 100644
--- a/include/cru/ui/controls/container.hpp
+++ b/include/cru/ui/controls/container.hpp
@@ -7,7 +7,7 @@ class BorderRenderObject;
namespace cru::ui::controls {
class Container : public ContentControl {
- static constexpr auto control_type = L"Container";
+ static constexpr std::string_view control_type = "Container";
protected:
Container();
@@ -19,7 +19,7 @@ class Container : public ContentControl {
~Container() override;
public:
- std::wstring_view GetControlType() const override final {
+ std::string_view GetControlType() const final {
return control_type;
}