! @return a predicate, on a pointer to a window, that it has the same name as the given window. */
| 47 | that it has the same name as the given window. |
| 48 | */ |
| 49 | inline auto SameName( const wxWindow &window ) |
| 50 | { |
| 51 | return HasName( window.GetName() ); |
| 52 | } |
| 53 | |
| 54 | //! @return unique window in the list satisfying the predicate, or null |
| 55 | template< typename Pred > |
no test coverage detected