git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15782
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
::SetCursor(GetHcursorOf(wxCursor(wxCURSOR_HAND)));
*result = TRUE;
break;
+
case WM_MOUSEMOVE:
case WM_LBUTTONDOWN:
case WM_LBUTTONUP:
return TRUE;
}
- // not processed
- return FALSE;
+ // not processed, leave it to the base class
+ return wxTextCtrlBase::MSWOnNotify(idCtrl, lParam, result);
}
// ----------------------------------------------------------------------------