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:
parent
f316faaa04
commit
841a6665bd
148 changed files with 2219 additions and 2273 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue