aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/controls/ScrollView.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/ui/controls/ScrollView.h')
-rw-r--r--include/cru/ui/controls/ScrollView.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/include/cru/ui/controls/ScrollView.h b/include/cru/ui/controls/ScrollView.h
index cefda747..181f4ba5 100644
--- a/include/cru/ui/controls/ScrollView.h
+++ b/include/cru/ui/controls/ScrollView.h
@@ -1,20 +1,13 @@
#pragma once
#include "SingleChildControl.h"
-
#include "cru/ui/render/ScrollRenderObject.h"
namespace cru::ui::controls {
class CRU_UI_API ScrollView
: public SingleChildControl<render::ScrollRenderObject> {
public:
- static constexpr std::string_view kControlType = "ScrollView";
+ static constexpr auto kControlName = "ScrollView";
ScrollView();
- CRU_DELETE_COPY(ScrollView)
- CRU_DELETE_MOVE(ScrollView)
- ~ScrollView() override;
-
- public:
- std::string GetControlType() const override { return std::string(kControlType); }
};
} // namespace cru::ui::controls