-*/
-
- node = event.GetDirection() ? GetChildren().First() : GetChildren().Last();
- }
-
- wxWindow *child = (wxWindow*) node->Data();
-
- if (child->AcceptsFocus())
- {
- child->SetFocus();
- return;
- }
-
- node = node->Next();
+#endif // 0
+
+ node = event.GetDirection() ? GetChildren().First()
+ : GetChildren().Last();
+ }
+
+ wxWindow *child = (wxWindow *)node->Data();
+
+ if (child->AcceptsFocus())
+ {
+ // ok, event processed
+ child->SetFocus();
+ return;
+ }
+
+ node = event.GetDirection() ? node->Next() : node->Previous();