]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/utilscmn.cpp
Removed TABs that had gotten in to the source
[wxWidgets.git] / src / common / utilscmn.cpp
index f563515d18e553ed91c1f40c5ac4031e1181efcc..6020b8780d182b7ee3c29203f59b716dba033cca 100644 (file)
@@ -504,23 +504,23 @@ wxAcceleratorEntry *wxGetAccelFromString(const wxString& label)
                 else {
                     // several special cases
                     current.MakeUpper();
-                    if ( current == wxT("DEL") ) {
+                    if ( current == _("DEL") ) {
                         keyCode = WXK_DELETE;
                     }
-                    else if ( current == wxT("DELETE") ) {
+                    else if ( current == _("DELETE") ) {
                         keyCode = WXK_DELETE;
                     }
-                    else if ( current == wxT("INS") ) {
+                    else if ( current == _("INS") ) {
                         keyCode = WXK_INSERT;
                     }
-                    else if ( current == wxT("INSERT") ) {
+                    else if ( current == _("INSERT") ) {
                         keyCode = WXK_INSERT;
                     }
 #if 0
-                    else if ( current == wxT("PGUP") ) {
+                    else if ( current == _("PGUP") ) {
                         keyCode = VK_PRIOR;
                     }
-                    else if ( current == wxT("PGDN") ) {
+                    else if ( current == _("PGDN") ) {
                         keyCode = VK_NEXT;
                     }
 #endif