]> git.saurik.com Git - wxWidgets.git/commitdiff
ambiguous operator[] access
authorStefan Csomor <csomor@advancedconcepts.ch>
Tue, 20 Jan 2004 18:19:55 +0000 (18:19 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Tue, 20 Jan 2004 18:19:55 +0000 (18:19 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25263 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/menucmn.cpp

index 60dfd05bdb3c94cf28cb1f29bd04f6d2999e6fe3..094271d0f71e44e892fb0531e2fa9d58086fcda0 100644 (file)
@@ -131,7 +131,7 @@ wxAcceleratorEntry *wxGetAccelFromString(const wxString& label)
                 current.clear();
             }
             else {
-                current += wxTolower(label[n]);
+                current += (wxChar) wxTolower(label[n]);
             }
         }