]> git.saurik.com Git - wxWidgets.git/commitdiff
don't waste time sending out update UI events for separators, they can't be updated...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 21 Sep 2008 13:05:56 +0000 (13:05 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 21 Sep 2008 13:05:56 +0000 (13:05 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55765 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/tbarbase.cpp

index 0e6d905ab36c63f45107752357bd717078210f03..8d07da7930e92ed57407ad2042533207ff169144 100644 (file)
@@ -697,7 +697,11 @@ void wxToolBarBase::UpdateWindowUI(long flags)
           node;
           node = node->GetNext() )
     {
-        int id = node->GetData()->GetId();
+        wxToolBarToolBase * const tool = node->GetData();
+        if ( tool->IsSeparator() )
+            continue;
+
+        int id = tool->GetId();
 
         wxUpdateUIEvent event(id);
         event.SetEventObject(this);