Fix the bug causing GUI tests crashes

This commit is contained in:
PB 2020-10-14 20:10:30 +02:00
parent fd67feedbc
commit 6ba1b8c78c

View File

@ -595,10 +595,7 @@ wxMouseEvent::wxMouseEvent(wxEventType commandType)
void wxMouseEvent::Assign(const wxMouseEvent& event)
{
wxEvent::operator=(event);
// Borland C++ 5.82 doesn't compile an explicit call to an implicitly
// defined operator=() so need to do it this way:
*static_cast<wxMouseState *>(this) = event;
wxMouseState::operator=(event);
m_x = event.m_x;
m_y = event.m_y;
@ -804,10 +801,7 @@ wxKeyEvent& wxKeyEvent::operator=(const wxKeyEvent& evt)
if ( &evt != this )
{
wxEvent::operator=(evt);
// Borland C++ 5.82 doesn't compile an explicit call to an
// implicitly defined operator=() so need to do it this way:
*static_cast<wxKeyboardState *>(this) = evt;
wxKeyboardState::operator=(evt);
DoAssignMembers(evt);
}