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) )
return FALSE;
SetValidator(validator);
// Validator was set in CreateBase
//SetValidator(validator);
parent->AddChild((wxButton *)this);
@ -83,7 +84,7 @@ bool wxButton::Create(wxWindow *parent,
_T("BUTTON"),
label,
WS_VISIBLE | WS_TABSTOP | WS_CHILD,
0, 0, 0, 0,
0, 0, 0, 0,
GetWinHwnd(parent),
(HMENU)m_windowId,
wxGetInstance(),

View File

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