]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/toolbar/toolbar.cpp
Use theme functions for drawing owner-drawn menus.
[wxWidgets.git] / samples / toolbar / toolbar.cpp
index 52151961807a6f9f54147bc4e3aa6d0d001ae1c3..7d0a678acd845e2a67ca10bca73809a0cc0e87af 100644 (file)
@@ -706,9 +706,11 @@ void MyFrame::OnToggleToolbar(wxCommandEvent& WXUNUSED(event))
     }
     else
     {
+        // notice that there is no need to call SetToolBar(NULL) here (although
+        // this it is harmless to do and it must be called if you do not delete
+        // the toolbar but keep it for later reuse), just delete the toolbar
+        // directly and it will reset the associated frame toolbar pointer
         delete tbar;
-
-        SetToolBar(NULL);
     }
 }