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

Introjucer: fix for a situation where project groups could get duplicate IDs.

This commit is contained in:
jules 2013-08-05 17:11:26 +01:00
parent 24f5fdea22
commit 53ae95b730
5 changed files with 26 additions and 30 deletions

View file

@ -30,8 +30,8 @@ static const char* resourceFileIdentifierString = "JUCER_BINARY_RESOURCE";
//==============================================================================
ResourceFile::ResourceFile (Project& project_)
: project (project_),
ResourceFile::ResourceFile (Project& p)
: project (p),
className ("BinaryData")
{
addResourcesFromProjectItem (project.getMainGroup());