1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-11 15:16:27 +01:00

ThomasFeher - Unused parameters clean up.

This commit is contained in:
James Crook
2016-09-11 20:30:06 +01:00
parent e8bf7a41eb
commit 65c7e8051a
25 changed files with 52 additions and 46 deletions

View File

@@ -43,12 +43,13 @@ wxString KeyStringNormalize(const wxString & key)
#endif
}
wxString KeyStringDisplay(const wxString & key, bool useSspecialChars)
wxString KeyStringDisplay(const wxString & key, bool usesSpecialChars)
{
(void)usesSpecialChars;//compiler food
wxString newkey = KeyStringNormalize(key);
#if defined(__WXMAC__)
if (!useSspecialChars) {
if (!usesSpecialChars) {
// Compose user-visible keystroke names, all ASCII
newkey.Replace(wxT("XCtrl+"), wxT("Control+"));
newkey.Replace(wxT("Alt+"), wxT("Option+"));