]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/tbarbase.cpp
Typo fix for GetSizer.
[wxWidgets.git] / src / common / tbarbase.cpp
index f0f946c192ea54325325d178620674bfdd43321b..2a66297a2b0e06979e0b3e8926a0bc51d722d3a6 100644 (file)
 #include "wx/image.h"
 #include "wx/settings.h"
 
-// For ::UpdateWindow
-#ifdef __WXMSW__
-#include <windows.h>
-#endif
-
 #include "wx/tbarbase.h"
 
 // ----------------------------------------------------------------------------
@@ -79,7 +74,9 @@ bool wxToolBarToolBase::Enable(bool enable)
 
 bool wxToolBarToolBase::Toggle(bool toggle)
 {
-    wxASSERT_MSG( m_isToggle, _T("can't toggle this tool") );
+    // wxUniv toolbar toggles even non-checkable tools temporarily - should we
+    // change the code there or just allow doing it?
+    //wxASSERT_MSG( m_isToggle, _T("can't toggle this tool") );
 
     if ( m_toggled == toggle )
         return FALSE;