- // there is not much to do if we have only one child (or not at all)
- if (GetChildren().GetCount() < 2)
- {
- event.Skip();
- return;
- }
-
- // don't process these ones here
- if (event.IsWindowChange())
- {
- event.Skip();
- return;
- }
-
- wxWindow *winFocus = event.GetCurrentFocus();
- if (!winFocus)
- winFocus = wxWindow::FindFocus();
-
- if (!winFocus)