Removed call to SetValidator since CreateBase was doing it already

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3747 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
1999-09-29 16:10:48 +00:00
parent 1b9315eb77
commit a77aa9d600
2 changed files with 5 additions and 3 deletions

View File

@@ -70,7 +70,8 @@ bool wxButton::Create(wxWindow *parent,
if ( !CreateBase(parent, id, pos, size, style, validator, name) ) if ( !CreateBase(parent, id, pos, size, style, validator, name) )
return FALSE; return FALSE;
SetValidator(validator); // Validator was set in CreateBase
//SetValidator(validator);
parent->AddChild((wxButton *)this); parent->AddChild((wxButton *)this);

View File

@@ -115,7 +115,8 @@ bool wxTextCtrl::Create(wxWindow *parent, wxWindowID id,
if ( !CreateBase(parent, id, pos, size, style, validator, name) ) if ( !CreateBase(parent, id, pos, size, style, validator, name) )
return FALSE; return FALSE;
SetValidator(validator); // Validator was set in CreateBase
//SetValidator(validator);
if ( parent ) if ( parent )
parent->AddChild(this); parent->AddChild(this);