- Code: Select all
void OnCaptureLost(wxMouseCaptureLostEvent& event);
auibook.cpp - line 2191 add text
- Code: Select all
EVT_MOUSE_CAPTURE_LOST(wxAuiTabCtrl::OnCaptureLost)
auibook.cpp - line +- 2625 add text
- Code: Select all
void wxAuiTabCtrl::OnCaptureLost(wxMouseCaptureLostEvent&
WXUNUSED(event))
{
}
This simply creates a "placeholder" for the event, which removes the error generated, since the AUINotebook now handles the event. (OK it's about as useful as a damp rag but it solves the problem)
HTH
Mal