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:
Vadim Zeitlin
1999-05-24 21:12:37 +00:00
parent 587ce561e1
commit 764a3a4906
4 changed files with 18 additions and 10 deletions

View File

@@ -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;
}