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

GIF decoding fix. Introjucer refactoring work.

This commit is contained in:
Julian Storer 2011-07-04 11:20:17 +01:00
parent 98ba259599
commit 2dff4cd3fa
33 changed files with 463 additions and 231 deletions

View file

@ -248,13 +248,13 @@ void ProjectInformationComponent::rebuildConfigTabs()
}
}
lastProjectType = project.getProjectType().getValue();
lastProjectType = project.getProjectTypeValue().getValue();
}
void ProjectInformationComponent::updateConfigTabs()
{
if (configTabBox.getNumTabs() != project.getNumConfigurations() + project.getNumExporters() + 2
|| lastProjectType != project.getProjectType().getValue())
|| lastProjectType != project.getProjectTypeValue().getValue())
{
rebuildConfigTabs();
}