aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/controls/Container.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/ui/controls/Container.hpp')
-rw-r--r--include/cru/ui/controls/Container.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/cru/ui/controls/Container.hpp b/include/cru/ui/controls/Container.hpp
index 304d402c..18958837 100644
--- a/include/cru/ui/controls/Container.hpp
+++ b/include/cru/ui/controls/Container.hpp
@@ -1,5 +1,5 @@
#pragma once
-#include "../ContentControl.hpp"
+#include "ContentControl.hpp"
namespace cru::ui::controls {
class Container : public ContentControl {
@@ -19,9 +19,6 @@ class Container : public ContentControl {
render::RenderObject* GetRenderObject() const override;
- protected:
- void OnChildChanged(Control* old_child, Control* new_child) override;
-
private:
std::unique_ptr<render::BorderRenderObject> render_object_;
};