|
|
|
@@ -41,8 +41,6 @@ ResizableWindow::ResizableWindow (const String& name, Colour bkgnd, bool shouldA |
|
|
|
|
|
|
|
ResizableWindow::~ResizableWindow()
|
|
|
|
{
|
|
|
|
splashScreen.deleteAndZero();
|
|
|
|
|
|
|
|
// Don't delete or remove the resizer components yourself! They're managed by the
|
|
|
|
// ResizableWindow, and you should leave them alone! You may have deleted them
|
|
|
|
// accidentally by careless use of deleteAllChildren()..?
|
|
|
|
@@ -60,27 +58,6 @@ ResizableWindow::~ResizableWindow() |
|
|
|
|
|
|
|
void ResizableWindow::initialise (const bool shouldAddToDesktop)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
==========================================================================
|
|
|
|
|
|
|
|
In accordance with the terms of the JUCE 7 End-Use License Agreement, the
|
|
|
|
JUCE Code in SECTION A cannot be removed, changed or otherwise rendered
|
|
|
|
ineffective unless you have a JUCE Indie or Pro license, or are using
|
|
|
|
JUCE under the GPL v3 license.
|
|
|
|
|
|
|
|
End User License Agreement: www.juce.com/juce-7-licence
|
|
|
|
|
|
|
|
==========================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
// BEGIN SECTION A
|
|
|
|
|
|
|
|
#if ! JucePlugin_Build_Standalone
|
|
|
|
splashScreen = new JUCESplashScreen (*this);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// END SECTION A
|
|
|
|
|
|
|
|
defaultConstrainer.setMinimumOnscreenAmounts (0x10000, 16, 24, 16);
|
|
|
|
|
|
|
|
lastNonFullScreenPos.setBounds (50, 50, 256, 256);
|
|
|
|
|