1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Removed some calls to trim() when getting the plugin and plugin manufacturer code

This commit is contained in:
ed 2018-01-11 09:06:21 +00:00
parent 1a60fa9765
commit e5ddf29bf9
2 changed files with 7 additions and 7 deletions

View file

@ -60,7 +60,7 @@ namespace
inline String toCharLiteral (const String& v)
{
auto fourCharCode = v.trim().substring (0, 4);
auto fourCharCode = v.substring (0, 4);
uint32 hexRepresentation = 0;
for (int i = 0; i < 4; ++i)