1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-19 01:04:20 +00:00

Minor string literal tidy-ups.

This commit is contained in:
Julian Storer 2010-03-23 17:36:12 +00:00
parent f316faaa04
commit 841a6665bd
148 changed files with 2219 additions and 2273 deletions

View file

@ -122,7 +122,7 @@ public:
JackAudioIODevice (const String& deviceName,
const String& inputId_,
const String& outputId_)
: AudioIODevice (deviceName, T("JACK")),
: AudioIODevice (deviceName, "JACK"),
inputId (inputId_),
outputId (outputId_),
isOpen_ (false),
@ -216,7 +216,7 @@ public:
{
if (client == 0)
{
lastError = T("No JACK client running");
lastError = "No JACK client running";
return lastError;
}
@ -455,7 +455,7 @@ class JackAudioIODeviceType : public AudioIODeviceType
public:
//==============================================================================
JackAudioIODeviceType()
: AudioIODeviceType (T("JACK")),
: AudioIODeviceType ("JACK"),
hasScanned (false)
{
}