]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/menucmn.cpp
VC 7.1 warning fix
[wxWidgets.git] / src / common / menucmn.cpp
index 865d668be2f4e50619e4f53d47c6a594227ea4e4..5422c06677e80909c61e6338fa9a50355e712a9f 100644 (file)
@@ -553,7 +553,7 @@ void wxMenuBase::UpdateUI(wxEvtHandler* source)
 
             if ( source->ProcessEvent(event) )
             {
-                // if anything changed, update the chanegd attribute
+                // if anything changed, update the changed attribute
                 if (event.GetSetText())
                     SetLabel(id, event.GetText());
                 if (event.GetSetChecked())
@@ -566,7 +566,7 @@ void wxMenuBase::UpdateUI(wxEvtHandler* source)
             if ( item->GetSubMenu() )
                 item->GetSubMenu()->UpdateUI(source);
         }
-        //else: item is a separator (which don't process update UI events)
+        //else: item is a separator (which doesn't process update UI events)
 
         node = node->GetNext();
     }