aboutsummaryrefslogtreecommitdiff
path: root/src/ui/render/render_object.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/render/render_object.cpp')
-rw-r--r--src/ui/render/render_object.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/ui/render/render_object.cpp b/src/ui/render/render_object.cpp
index 8e65dad0..b6a9e8e4 100644
--- a/src/ui/render/render_object.cpp
+++ b/src/ui/render/render_object.cpp
@@ -42,14 +42,23 @@ void RenderObject::Layout(const Rect& rect) {
}
void RenderObject::OnParentChanged(RenderObject* old_parent,
- RenderObject* new_parent) {}
+ RenderObject* new_parent) {
+ CRU_UNUSED(old_parent)
+ CRU_UNUSED(new_parent)
+}
void RenderObject::OnAddChild(RenderObject* new_child, int position) {
+ CRU_UNUSED(new_child)
+ CRU_UNUSED(position)
+
InvalidateLayout();
InvalidatePaint();
}
void RenderObject::OnRemoveChild(RenderObject* removed_child, int position) {
+ CRU_UNUSED(removed_child)
+ CRU_UNUSED(position)
+
InvalidateLayout();
InvalidatePaint();
}