| 172 | } |
| 173 | |
| 174 | wxString WindowEventName( const wxEvent &event ) |
| 175 | { |
| 176 | wxString windowName; |
| 177 | if ( auto pWindow = dynamic_cast< wxWindow * >( event.GetEventObject() ) ) |
| 178 | windowName = WindowPaths::FindPath( *pWindow ).GET(); |
| 179 | return windowName; |
| 180 | } |
| 181 | |
| 182 | std::optional<wxArrayStringEx> WindowEventSerialization( const wxEvent &event ) |
| 183 | { |
no test coverage detected