]> git.saurik.com Git - wxWidgets.git/commitdiff
Changed [] parameters to be unsigned.
authorBrian Macy <nobody@localhost>
Wed, 19 May 1999 17:40:01 +0000 (17:40 +0000)
committerBrian Macy <nobody@localhost>
Wed, 19 May 1999 17:40:01 +0000 (17:40 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2514 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/menu.cpp

index 7d926f6ee2d4556acba92709578d664727948540..66cf7c98efde371619796ed56de567fc56b8fd60 100644 (file)
@@ -179,13 +179,13 @@ void wxMenu::Append(wxMenuItem *pItem)
         else {
             if ( current.Len() == 1 ) {
                 // it's a letter
-                keyCode = wxToupper(current[0]);
+                keyCode = wxToupper(current[0U]);
             }
             else {
                 // it should be a function key
-                if ( current[0] == 'f' && isdigit(current[1]) &&
+                if ( current[0U] == 'f' && isdigit(current[1U]) &&
                      (current.Len() == 2 ||
-                     (current.Len() == 3 && isdigit(current[2]))) ) {
+                     (current.Len() == 3 && isdigit(current[2U]))) ) {
                     int n;
                     sscanf(current.c_str() + 1, "%d", &n);