mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-11 08:56:03 +01:00
Move AppName to lib-utility...
... It makes more sense there, at an even lower level than lib-files. Avoid type wxString.
This commit is contained in:
21
libraries/lib-utility/ModuleConstants.cpp
Normal file
21
libraries/lib-utility/ModuleConstants.cpp
Normal file
@@ -0,0 +1,21 @@
|
||||
/**********************************************************************
|
||||
|
||||
Audacity: A Digital Audio Editor
|
||||
|
||||
ModuleConstants.cpp
|
||||
|
||||
Paul Licameli
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
#include "ModuleConstants.h"
|
||||
|
||||
// We want Audacity with a capital 'A'
|
||||
// DA: App name
|
||||
const std::wstring AppName =
|
||||
#ifndef EXPERIMENTAL_DA
|
||||
L"Audacity"
|
||||
#else
|
||||
L"DarkAudacity"
|
||||
#endif
|
||||
;
|
||||
Reference in New Issue
Block a user