mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-21 01:24:21 +00:00
Fixed a couple of introjucer problems. Reorganised some native code.
This commit is contained in:
parent
b1a77fa391
commit
c908bc5b84
26 changed files with 941 additions and 925 deletions
|
|
@ -308,7 +308,9 @@ bool ProjectContentComponent::perform (const InvocationInfo& info)
|
|||
if (project != nullptr)
|
||||
{
|
||||
ScopedPointer <ProjectExporter> exporter (ProjectExporter::createPlatformDefaultExporter (*project));
|
||||
exporter->launchProject();
|
||||
|
||||
if (exporter != nullptr)
|
||||
exporter->launchProject();
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
@ -316,7 +318,9 @@ bool ProjectContentComponent::perform (const InvocationInfo& info)
|
|||
if (project != nullptr && project->save (true, true) == FileBasedDocument::savedOk)
|
||||
{
|
||||
ScopedPointer <ProjectExporter> exporter (ProjectExporter::createPlatformDefaultExporter (*project));
|
||||
exporter->launchProject();
|
||||
|
||||
if (exporter != nullptr)
|
||||
exporter->launchProject();
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue