| 107 | } |
| 108 | |
| 109 | Path FindPath( const wxWindow &window ) |
| 110 | { |
| 111 | wxArrayStringEx components; |
| 112 | PathComponents( window, components ); |
| 113 | return wxJoin( components, PathSeparator, EscapeCharacter ); |
| 114 | } |
| 115 | |
| 116 | wxWindow *FindByPath( const Path &path ) |
| 117 | { |
no test coverage detected