Finds all immediate children widgets with corresponding userIDs.
См. определение в файле ControlsXboxNew.c строка 426
427 {
428 Widget child = wid.GetChildren();
429 while (child)
430 {
431 if (child.GetUserID() == user_id)
432 {
433 results.Insert(child);
434 }
435 child = child.GetSibling();
436 }
437 return (results && results.Count() > 0);
438 }
Используется в DrawConnectingLines().