Find the unique window in the list for the given name, if there is such
| 74 | |
| 75 | // Find the unique window in the list for the given name, if there is such |
| 76 | wxWindow *FindByNameAmongPeers( |
| 77 | const wxString &name, const wxWindowList &list ) |
| 78 | { |
| 79 | return UniqueWindowAmongPeers(list, HasName(name)); |
| 80 | } |
| 81 | |
| 82 | // Find array of window names, starting with a top-level window and ending |
| 83 | // with the given window, or an empty array if the conditions fail for |
no test coverage detected