diff options
author | crupest <crupest@outlook.com> | 2019-12-13 22:25:29 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-12-13 22:25:29 +0800 |
commit | 3d3290a60d328b6d2a6d3fc4d8d7483583ed13aa (patch) | |
tree | 3e2b75cfb70e96d4b5f4a0b5cb19a8c3cd20cf53 /src/ui/layout_control.cpp | |
parent | 9110574bb51e9e2959842a7641f598d34c3cd847 (diff) | |
download | cru-3d3290a60d328b6d2a6d3fc4d8d7483583ed13aa.tar.gz cru-3d3290a60d328b6d2a6d3fc4d8d7483583ed13aa.tar.bz2 cru-3d3290a60d328b6d2a6d3fc4d8d7483583ed13aa.zip |
...
Diffstat (limited to 'src/ui/layout_control.cpp')
-rw-r--r-- | src/ui/layout_control.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/ui/layout_control.cpp b/src/ui/layout_control.cpp index 00215a8e..cd9587c7 100644 --- a/src/ui/layout_control.cpp +++ b/src/ui/layout_control.cpp @@ -38,7 +38,13 @@ void LayoutControl::RemoveChild(const int position) { OnRemoveChild(child, position); } -void LayoutControl::OnAddChild(Control* child, int position) {} +void LayoutControl::OnAddChild(Control* child, int position) { + CRU_UNUSED(child) + CRU_UNUSED(position) +} -void LayoutControl::OnRemoveChild(Control* child, int position) {} +void LayoutControl::OnRemoveChild(Control* child, int position) { + CRU_UNUSED(child) + CRU_UNUSED(position) +} } // namespace cru::ui |