1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-26 02:14:22 +00:00

Minor clean-ups

This commit is contained in:
jules 2014-08-14 12:04:43 +01:00
parent da8e3c53b6
commit 66d413c32b
8 changed files with 54 additions and 54 deletions

View file

@ -42,7 +42,7 @@ public:
}
//==============================================================================
void closeButtonPressed()
void closeButtonPressed() override
{
// When the user presses the close button, we'll tell the app to quit. This
// HelloWorldWindow object will be deleted by the JUCEHelloWorldApplication class.
@ -61,7 +61,7 @@ public:
JUCEHelloWorldApplication() {}
//==============================================================================
void initialise (const String& commandLine)
void initialise (const String& commandLine) override
{
// For this demo, we'll just create the main window...
helloWorldWindow = new HelloWorldWindow();
@ -75,7 +75,7 @@ public:
*/
}
void shutdown()
void shutdown() override
{
// This method is where you should clear-up your app's resources..
@ -85,24 +85,24 @@ public:
}
//==============================================================================
const String getApplicationName()
const String getApplicationName() override
{
return "Hello World for JUCE";
}
const String getApplicationVersion()
const String getApplicationVersion() override
{
// The ProjectInfo::versionString value is automatically updated by the Jucer, and
// can be found in the JuceHeader.h file that it generates for our project.
return ProjectInfo::versionString;
}
bool moreThanOneInstanceAllowed()
bool moreThanOneInstanceAllowed() override
{
return true;
}
void anotherInstanceStarted (const String& commandLine)
void anotherInstanceStarted (const String& commandLine) override
{
}