]> git.saurik.com Git - wxWidgets.git/commitdiff
Correct initial value of "Toggle toolbar" check menu item in the sample.
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 28 Dec 2009 16:18:30 +0000 (16:18 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 28 Dec 2009 16:18:30 +0000 (16:18 +0000)
This item should initially be checked because the toolbar is initially shown.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63006 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/toolbar/toolbar.cpp

index 9fc57c6030735d3cfb9a95e23c149d68eb887d77..52151961807a6f9f54147bc4e3aa6d0d001ae1c3 100644 (file)
@@ -627,6 +627,7 @@ MyFrame::MyFrame(wxFrame* parent,
     // Associate the menu bar with the frame
     SetMenuBar(menuBar);
 
+    menuBar->Check(IDM_TOOLBAR_TOGGLE_TOOLBAR, true);
     menuBar->Check(IDM_TOOLBAR_SHOW_BOTH, true);
     menuBar->Check(IDM_TOOLBAR_TOGGLETOOLTIPS, true);