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

Introjucer: more AAX support and some clean-ups.

This commit is contained in:
jules 2012-06-26 15:30:48 +01:00
parent 165bed1fbf
commit 9074f68da8
14 changed files with 86 additions and 23 deletions

View file

@ -78,9 +78,14 @@ void Project::setTitle (const String& newTitle)
getMainGroup().getNameValue() = newTitle;
}
String Project::getTitle() const
{
return projectRoot.getChildWithName (Tags::projectMainGroup) [Ids::name];
}
String Project::getDocumentTitle()
{
return getProjectName().toString();
return getTitle();
}
void Project::updateProjectSettings()
@ -337,7 +342,7 @@ const ProjectType& Project::getProjectType() const
//==============================================================================
void Project::createPropertyEditors (PropertyListBuilder& props)
{
props.add (new TextPropertyComponent (getProjectName(), "Project Name", 256, false),
props.add (new TextPropertyComponent (getProjectNameValue(), "Project Name", 256, false),
"The name of the project.");
props.add (new TextPropertyComponent (getVersionValue(), "Project Version", 16, false),