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

Introjucer: added checking to avoid duplicate IDs in groups.

This commit is contained in:
jules 2012-05-26 17:51:43 +01:00
parent 7cd30ec175
commit 276e7622a9
2 changed files with 9 additions and 3 deletions

View file

@ -590,7 +590,7 @@ static bool exporterTargetMatches (const String& test, String target)
validTargets.addTokens (target, ",;", "");
validTargets.trim();
validTargets.removeEmptyStrings();
if (validTargets.size() == 0)
return true;
@ -602,7 +602,7 @@ static bool exporterTargetMatches (const String& test, String target)
|| (target.startsWithChar ('!') && test != target.substring (1).trimStart()))
return true;
}
return false;
}