mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-02 16:49:41 +02:00
Correct some non-wxWidgets literals
This commit is contained in:
parent
4503c704dd
commit
e023a1120b
@ -20,8 +20,8 @@
|
||||
|
||||
#include "aeffectx.h"
|
||||
|
||||
#define VSTCMDKEY L"-checkvst"
|
||||
#define VSTPLUGINTYPE L"VST"
|
||||
#define VSTCMDKEY wxT("-checkvst")
|
||||
#define VSTPLUGINTYPE wxT("VST")
|
||||
|
||||
#define audacityVSTID CCONST('a', 'u', 'D', 'y');
|
||||
|
||||
|
@ -25,8 +25,8 @@
|
||||
#include "audacity/ModuleInterface.h"
|
||||
#include "audacity/PluginInterface.h"
|
||||
|
||||
#define AUDIOUNITEFFECTS_VERSION wxT("1.0.0.0");
|
||||
#define AUDIOUNITEFFECTS_FAMILY L"AudioUnit"
|
||||
#define AUDIOUNITEFFECTS_VERSION wxT("1.0.0.0")
|
||||
#define AUDIOUNITEFFECTS_FAMILY wxT("AudioUnit")
|
||||
|
||||
class AudioUnitEffect;
|
||||
|
||||
|
@ -98,7 +98,7 @@ LadspaEffectsModule::~LadspaEffectsModule()
|
||||
wxString LadspaEffectsModule::GetID()
|
||||
{
|
||||
// Can be anything, but this is a v4 UUID
|
||||
return L"3ebd9fb9-c020-4c0d-a786-d6a914e55e31";
|
||||
return wxT("3ebd9fb9-c020-4c0d-a786-d6a914e55e31");
|
||||
}
|
||||
|
||||
wxString LadspaEffectsModule::GetPath()
|
||||
|
@ -23,8 +23,8 @@ class wxCheckBox;
|
||||
|
||||
#include "ladspa.h"
|
||||
|
||||
#define LADSPAEFFECTS_VERSION wxT("1.0.0.0");
|
||||
#define LADSPAEFFECTS_FAMILY L"Ladspa"
|
||||
#define LADSPAEFFECTS_VERSION wxT("1.0.0.0")
|
||||
#define LADSPAEFFECTS_FAMILY wxT("Ladspa")
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
@ -24,8 +24,8 @@ class wxCheckBox;
|
||||
#include "../Effect.h"
|
||||
#include "LV2PortGroup.h"
|
||||
|
||||
#define LV2EFFECTS_VERSION wxT("1.0.0.0");
|
||||
#define LV2EFFECTS_FAMILY L"LV2"
|
||||
#define LV2EFFECTS_VERSION wxT("1.0.0.0")
|
||||
#define LV2EFFECTS_FAMILY wxT("LV2")
|
||||
|
||||
/** A structure that contains information about a single LV2 plugin port. */
|
||||
struct LV2Port
|
||||
|
@ -28,8 +28,8 @@
|
||||
|
||||
#include <string>
|
||||
|
||||
#define NYQUISTEFFECTS_VERSION wxT("1.0.0.0");
|
||||
#define NYQUISTEFFECTS_FAMILY L"Nyquist"
|
||||
#define NYQUISTEFFECTS_VERSION wxT("1.0.0.0")
|
||||
#define NYQUISTEFFECTS_FAMILY wxT("Nyquist")
|
||||
|
||||
class NyqControl
|
||||
{
|
||||
|
@ -24,8 +24,8 @@ class wxComboBox;
|
||||
|
||||
#include <vamp-hostsdk/PluginLoader.h>
|
||||
|
||||
#define VAMPEFFECTS_VERSION wxT("1.0.0.0");
|
||||
#define VAMPEFFECTS_FAMILY L"Vamp"
|
||||
#define VAMPEFFECTS_VERSION wxT("1.0.0.0")
|
||||
#define VAMPEFFECTS_FAMILY wxT("Vamp")
|
||||
|
||||
class VampEffect : public Effect {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user