1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-05 22:21:15 +01:00

"new"->"NEW" in comments, easier to find remaining naked operator new

This commit is contained in:
Paul Licameli
2016-02-13 10:43:16 -05:00
parent 56e7653343
commit 7c4c45a0d5
143 changed files with 451 additions and 451 deletions

View File

@@ -11,7 +11,7 @@
\class ModulePrefs
\brief A PrefsPanel to enable/disable certain modules. 'Modules' are
dynamically linked libraries that modify Audacity. They are plug-ins
with names like mnod-script-pipe that add new features.
with names like mnod-script-pipe that add NEW features.
*//*******************************************************************/
@@ -27,7 +27,7 @@ with names like mnod-script-pipe that add new features.
////////////////////////////////////////////////////////////////////////////////
/* i18n-hint: Modules are optional extensions to Audacity that add new features.*/
/* i18n-hint: Modules are optional extensions to Audacity that add NEW features.*/
ModulePrefs::ModulePrefs(wxWindow * parent)
: PrefsPanel(parent, _("Modules"))
{
@@ -139,7 +139,7 @@ bool ModulePrefs::Apply()
// static function that tells us about a module.
int ModulePrefs::GetModuleStatus( wxString fname ){
// Default status is new module, and we will ask once.
// Default status is NEW module, and we will ask once.
int iStatus = kModuleNew;
wxString ShortName = wxFileName( fname ).GetName();