diff options
Diffstat (limited to 'src/ui/content_control.cpp')
-rw-r--r-- | src/ui/content_control.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ui/content_control.cpp b/src/ui/content_control.cpp index 6383a10e..5bc8eda4 100644 --- a/src/ui/content_control.cpp +++ b/src/ui/content_control.cpp @@ -28,5 +28,8 @@ void ContentControl::SetChild(Control* child) { OnChildChanged(old_child, child); } -void ContentControl::OnChildChanged(Control* old_child, Control* new_child) {} +void ContentControl::OnChildChanged(Control* old_child, Control* new_child) { + CRU_UNUSED(old_child) + CRU_UNUSED(new_child) +} } // namespace cru::ui |