aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/controls/TreeView.h
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-10-17 14:33:16 +0800
committerYuqian Yang <crupest@crupest.life>2025-10-17 14:33:16 +0800
commit9f419314b646bf57dfc3fcbb509b3be2c974e3fd (patch)
tree6d40efce7beade635b6480a9b4e7db2f114c2145 /include/cru/ui/controls/TreeView.h
parent5c5c496b605886b286d1b99e0f9e28ec02117ad5 (diff)
downloadcru-9f419314b646bf57dfc3fcbb509b3be2c974e3fd.tar.gz
cru-9f419314b646bf57dfc3fcbb509b3be2c974e3fd.tar.bz2
cru-9f419314b646bf57dfc3fcbb509b3be2c974e3fd.zip
Remove String on Linux.
Diffstat (limited to 'include/cru/ui/controls/TreeView.h')
-rw-r--r--include/cru/ui/controls/TreeView.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/cru/ui/controls/TreeView.h b/include/cru/ui/controls/TreeView.h
index 6c3c360b..dc74750a 100644
--- a/include/cru/ui/controls/TreeView.h
+++ b/include/cru/ui/controls/TreeView.h
@@ -52,14 +52,16 @@ class CRU_UI_API TreeViewItem : public Object {
class CRU_UI_API TreeView : public Control {
public:
- constexpr static StringView kControlType = u"TreeView";
+ constexpr static std::string_view kControlType = "TreeView";
TreeView();
CRU_DELETE_COPY(TreeView)
CRU_DELETE_MOVE(TreeView)
~TreeView() override;
- String GetControlType() const override { return kControlType.ToString(); }
+ std::string GetControlType() const override {
+ return std::string(kControlType);
+ }
render::TreeRenderObject* GetRenderObject() { return &render_object_; }
void ForEachChild(const std::function<void(Control*)>& predicate) override;