diff options
Diffstat (limited to 'include/cru/ui')
-rw-r--r-- | include/cru/ui/controls/LayoutControl.h | 2 | ||||
-rw-r--r-- | include/cru/ui/controls/SingleChildControl.h | 2 | ||||
-rw-r--r-- | include/cru/ui/render/LayoutRenderObject.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/cru/ui/controls/LayoutControl.h b/include/cru/ui/controls/LayoutControl.h index 59ffaee2..2ea6ef67 100644 --- a/include/cru/ui/controls/LayoutControl.h +++ b/include/cru/ui/controls/LayoutControl.h @@ -3,7 +3,7 @@ namespace cru::ui::controls { template <typename TRenderObject> -class CRU_UI_API LayoutControl : public Control { +class LayoutControl : public Control { protected: LayoutControl() : container_render_object_(new TRenderObject()) { container_render_object_->SetAttachedControl(this); diff --git a/include/cru/ui/controls/SingleChildControl.h b/include/cru/ui/controls/SingleChildControl.h index d40d7a27..6bf150c0 100644 --- a/include/cru/ui/controls/SingleChildControl.h +++ b/include/cru/ui/controls/SingleChildControl.h @@ -3,7 +3,7 @@ namespace cru::ui::controls { template <typename TRenderObject> -class CRU_UI_API SingleChildControl : public Control { +class SingleChildControl : public Control { protected: SingleChildControl() : container_render_object_(new TRenderObject()) { container_render_object_->SetAttachedControl(this); diff --git a/include/cru/ui/render/LayoutRenderObject.h b/include/cru/ui/render/LayoutRenderObject.h index c8678deb..8fec3ada 100644 --- a/include/cru/ui/render/LayoutRenderObject.h +++ b/include/cru/ui/render/LayoutRenderObject.h @@ -5,7 +5,7 @@ namespace cru::ui::render { template <typename TChildLayoutData> -class CRU_UI_API LayoutRenderObject : public RenderObject { +class LayoutRenderObject : public RenderObject { public: using ChildLayoutData = TChildLayoutData; |