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

Minor clean-ups

This commit is contained in:
jules 2014-04-29 14:14:21 +01:00
parent 4e6e2a396e
commit 91d9c96338
23 changed files with 34 additions and 34 deletions

View file

@ -184,10 +184,10 @@ void Project::updateOldModulePaths()
}
//==============================================================================
static int getVersionElement (const String& v, int index)
static int getVersionElement (StringRef v, int index)
{
StringArray parts;
parts.addTokens (v, "., ", String::empty);
parts.addTokens (v, "., ", StringRef());
return parts [parts.size() - index - 1].getIntValue();
}