]> git.saurik.com Git - wxWidgets.git/commitdiff
Pass validator, not wxDefaultValidator!
authorJulian Smart <julian@anthemion.co.uk>
Tue, 16 Apr 2002 19:56:20 +0000 (19:56 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 16 Apr 2002 19:56:20 +0000 (19:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15171 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/checkbox.cpp

index 15347befaa1b2e2cd17eeb1601b03fa66c514e73..bc4e9e8393f7eb64e497dfb7388333e558e9c1e4 100644 (file)
@@ -71,7 +71,7 @@ bool wxCheckBox::Create(wxWindow *parent,
                         const wxValidator& validator,
                         const wxString& name)
 {
                         const wxValidator& validator,
                         const wxString& name)
 {
-    if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
+    if ( !CreateControl(parent, id, pos, size, style, validator, name) )
         return FALSE;
 
     long msStyle = BS_AUTOCHECKBOX | WS_TABSTOP;
         return FALSE;
 
     long msStyle = BS_AUTOCHECKBOX | WS_TABSTOP;