]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/tbar95.cpp
Themes and threads testing code.
[wxWidgets.git] / src / msw / tbar95.cpp
index 5f9153e7b82ce9832f3dd00e9be7cc49f6723941..bce6f600393f42f08ae9f58c075197fdd07162c9 100644 (file)
@@ -192,7 +192,7 @@ bool wxToolBar::Create(wxWindow *parent,
                        const wxString& name)
 {
     // common initialisation
-    if ( !CreateControl(parent, id, pos, size, style, name) )
+    if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
         return FALSE;
 
     // prepare flags
@@ -655,7 +655,7 @@ bool wxToolBar::MSWCommand(WXUINT cmd, WXWORD id)
     if ( tool->CanBeToggled() )
     {
         LRESULT state = ::SendMessage(GetHwnd(), TB_GETSTATE, id, 0);
-        tool->SetToggle((state & TBSTATE_CHECKED) != 0);
+        tool->Toggle((state & TBSTATE_CHECKED) != 0);
     }
 
     bool toggled = tool->IsToggled();