diff options
Diffstat (limited to 'src/ui/control.cpp')
-rw-r--r-- | src/ui/control.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/ui/control.cpp b/src/ui/control.cpp index 5f760939..cde602b7 100644 --- a/src/ui/control.cpp +++ b/src/ui/control.cpp @@ -105,9 +105,12 @@ void Control::SetCursor(std::shared_ptr<ICursor> cursor) { } } -void Control::OnParentChanged(Control* old_parent, Control* new_parent) {} +void Control::OnParentChanged(Control* old_parent, Control* new_parent) { + CRU_UNUSED(old_parent) + CRU_UNUSED(new_parent) +} -void Control::OnAttachToWindow(Window* window) {} +void Control::OnAttachToWindow(Window* window) { CRU_UNUSED(window) } -void Control::OnDetachToWindow(Window* window) {} +void Control::OnDetachToWindow(Window* window) { CRU_UNUSED(window) } } // namespace cru::ui |