1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-29 15:09:30 +02:00
audacity/libraries/lib-utility/ModuleConstants.cpp
Paul Licameli 347cb7c294 Move AppName to lib-utility...
... It makes more sense there, at an even lower level than lib-files.  Avoid
type wxString.
2021-07-30 08:17:25 -04:00

22 lines
409 B
C++

/**********************************************************************
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
;