X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c4c3e30f2eb4b6771869d1661c32e0b732a6874a..c1ce7c198801c1766083a245874f07ea20b16407:/src/common/stockitem.cpp?ds=sidebyside diff --git a/src/common/stockitem.cpp b/src/common/stockitem.cpp index b6336d5645..13be116b1f 100644 --- a/src/common/stockitem.cpp +++ b/src/common/stockitem.cpp @@ -158,7 +158,7 @@ wxString wxGetStockLabel(wxWindowID id) }; #undef STOCKITEM - + return wxEmptyString; } @@ -171,11 +171,11 @@ bool wxIsStockLabel(wxWindowID id, const wxString& label) if (label == stock) return true; - + stock.Replace(_T("&"), wxEmptyString); if (label == stock) return true; - + return false; } @@ -189,7 +189,7 @@ const char *wxGetStockGtkID(wxWindowID id) #define STOCKITEM(wx,gtk) \ case wx: \ return gtk; - + #define STOCKITEM_MISSING(wx) \ case wx: \ return NULL; @@ -259,7 +259,7 @@ const char *wxGetStockGtkID(wxWindowID id) }; #undef STOCKITEM - + return NULL; }