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:
parent
1a60fa9765
commit
e5ddf29bf9
2 changed files with 7 additions and 7 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue