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

Projucer: Added a missing reset() call to the PIP creator window when shutting down

This commit is contained in:
ed 2018-06-27 11:17:15 +01:00
parent 4ebfb32000
commit c859f50fe6
2 changed files with 2 additions and 1 deletions

View file

@ -211,6 +211,7 @@ void ProjucerApplication::shutdown()
aboutWindow.reset();
pathsWindow.reset();
editorColourSchemeWindow.reset();
pipCreatorWindow.reset();
if (licenseController != nullptr)
{

View file

@ -153,7 +153,7 @@ public:
std::unique_ptr<ApplicationCommandManager> commandManager;
std::unique_ptr<Component> utf8Window, svgPathWindow, aboutWindow, applicationUsageDataWindow,
pathsWindow, editorColourSchemeWindow, pipCreatorWindow;
pathsWindow, editorColourSchemeWindow, pipCreatorWindow;
std::unique_ptr<FileLogger> logger;