Lack of accelerators on Smartphones.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31259 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2005-01-06 12:20:15 +00:00
parent 61f824b819
commit 06442f7099

View File

@ -95,9 +95,15 @@ bool wxIsStockID(wxWindowID id)
wxString wxGetStockLabel(wxWindowID id)
{
#ifdef __SMARTPHONE__
#define STOCKITEM(stockid, label) \
case stockid: \
return wxStripMenuCodes(label);
#else
#define STOCKITEM(stockid, label) \
case stockid: \
return label;
#endif
switch (id)
{