1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-31 03:00:05 +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

@ -42,7 +42,7 @@ PNGImageFormat::~PNGImageFormat() {}
const String PNGImageFormat::getFormatName()
{
return T("PNG");
return "PNG";
}
bool PNGImageFormat::canUnderstand (InputStream& in)
@ -85,7 +85,7 @@ void JPEGImageFormat::setQuality (const float newQuality)
const String JPEGImageFormat::getFormatName()
{
return T("JPEG");
return "JPEG";
}
bool JPEGImageFormat::canUnderstand (InputStream& in)
@ -125,7 +125,7 @@ public:
const String getFormatName()
{
return T("GIF");
return "GIF";
}
bool canUnderstand (InputStream& in)