1. bug fixes in wxCaret
2. wxPoint now has += and -= 3. Validate() takes "wxWindow *" (and not wxWindowBase) again git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2555 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -624,7 +624,7 @@ bool wxWindowBase::Validate()
|
||||
{
|
||||
wxWindowBase *child = node->GetData();
|
||||
wxValidator *validator = child->GetValidator();
|
||||
if ( validator && validator->Validate(this) )
|
||||
if ( validator && validator->Validate((wxWindow *)this) )
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user