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

changed the look and feel classes, to make "shiny" the new default look, and moved the old look into an OldSchoolLookAndFeel class.

This commit is contained in:
jules 2007-06-20 13:14:27 +00:00
parent 1bb0bf0b36
commit 205304c3a9
23 changed files with 1689 additions and 1666 deletions

View file

@ -86,7 +86,6 @@ class JUCEHelloWorldApplication : public JUCEApplication
initialised, so any embedded objects would also get constructed too soon.
*/
HelloWorldWindow* helloWorldWindow;
ShinyLookAndFeel shinyLookAndFeel;
public:
//==============================================================================
@ -109,8 +108,6 @@ public:
//==============================================================================
void initialise (const String& commandLine)
{
LookAndFeel::setDefaultLookAndFeel (&shinyLookAndFeel);
// just create the main window...
helloWorldWindow = new HelloWorldWindow();
@ -129,8 +126,6 @@ public:
if (helloWorldWindow != 0)
delete helloWorldWindow;
LookAndFeel::setDefaultLookAndFeel (0);
}
//==============================================================================