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:
parent
1b9315eb77
commit
a77aa9d600
@ -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(),
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user