1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-07 04:10:08 +00:00

Introjucer: graphical tweaks, binary data header change.

This commit is contained in:
jules 2012-07-26 22:16:07 +01:00
parent af3bab799f
commit 49d0182f61
16 changed files with 72 additions and 100 deletions

View file

@ -88,8 +88,8 @@ String Project::getDocumentTitle()
void Project::updateProjectSettings()
{
projectRoot.setProperty (Ids::jucerVersion, ProjectInfo::versionString, 0);
projectRoot.setProperty (Ids::name, getDocumentTitle(), 0);
projectRoot.setProperty (Ids::jucerVersion, ProjectInfo::versionString, nullptr);
projectRoot.setProperty (Ids::name, getDocumentTitle(), nullptr);
}
void Project::setMissingDefaultValues()
@ -608,7 +608,7 @@ void Project::Item::initialiseMissingProperties()
if (isFile())
{
state.setProperty (Ids::name, getFile().getFileName(), 0);
state.setProperty (Ids::name, getFile().getFileName(), nullptr);
}
else if (isGroup())
{