From: Stefan Csomor Date: Tue, 20 Jan 2004 18:19:55 +0000 (+0000) Subject: ambiguous operator[] access X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a380af4dbff98b71780c32772625f1d974522e4e?ds=inline ambiguous operator[] access git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25263 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/menucmn.cpp b/src/common/menucmn.cpp index 60dfd05bdb..094271d0f7 100644 --- a/src/common/menucmn.cpp +++ b/src/common/menucmn.cpp @@ -131,7 +131,7 @@ wxAcceleratorEntry *wxGetAccelFromString(const wxString& label) current.clear(); } else { - current += wxTolower(label[n]); + current += (wxChar) wxTolower(label[n]); } }