]> git.saurik.com Git - wxWidgets.git/commitdiff
wxAccel fix.
authorRobert Roebling <robert@roebling.de>
Sat, 18 Mar 2000 20:18:00 +0000 (20:18 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 18 Mar 2000 20:18:00 +0000 (20:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6829 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/accel.cpp
src/gtk1/accel.cpp

index 9b861acb2042ab792355728057b49586b5ed8a8b..f3f9ba6a686cf67876361ab94261dd6d13f27b33 100644 (file)
@@ -53,7 +53,7 @@ wxAcceleratorTable::wxAcceleratorTable( int n, wxAcceleratorEntry entries[] )
         int flag    = entries[i].GetFlags();
         int keycode = entries[i].GetKeyCode();
         int command = entries[i].GetCommand();
-        if ((keycode >= (int)'A') && (keycode <= (int)'Z')) keycode = (int)tolower( (char)keycode );
+        if ((keycode >= (int)'a') && (keycode <= (int)'z')) keycode = (int)toupper( (char)keycode );
         M_ACCELDATA->m_accels.Append( new wxAcceleratorEntry( flag, keycode, command ) );
     }
 }
index 9b861acb2042ab792355728057b49586b5ed8a8b..f3f9ba6a686cf67876361ab94261dd6d13f27b33 100644 (file)
@@ -53,7 +53,7 @@ wxAcceleratorTable::wxAcceleratorTable( int n, wxAcceleratorEntry entries[] )
         int flag    = entries[i].GetFlags();
         int keycode = entries[i].GetKeyCode();
         int command = entries[i].GetCommand();
-        if ((keycode >= (int)'A') && (keycode <= (int)'Z')) keycode = (int)tolower( (char)keycode );
+        if ((keycode >= (int)'a') && (keycode <= (int)'z')) keycode = (int)toupper( (char)keycode );
         M_ACCELDATA->m_accels.Append( new wxAcceleratorEntry( flag, keycode, command ) );
     }
 }