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:
parent
165bed1fbf
commit
9074f68da8
14 changed files with 86 additions and 23 deletions
|
|
@ -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),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue