1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-06 11:42:17 +01:00

Remove a few macro _

This commit is contained in:
Paul Licameli
2020-05-06 00:47:16 -04:00
parent a0045f8772
commit 5cef2cd3e4
7 changed files with 48 additions and 44 deletions

View File

@@ -360,13 +360,14 @@ SnapResults SnapManager::Snap
return results;
}
/* static */ wxArrayStringEx SnapManager::GetSnapLabels()
/* static */ const TranslatableStrings &SnapManager::GetSnapLabels()
{
return wxArrayStringEx{
_("Off") ,
_("Nearest") ,
_("Prior") ,
static const TranslatableStrings result{
XO("Off") ,
XO("Nearest") ,
XO("Prior") ,
};
return result;
}
#include "AColor.h"