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

fix for a mac file bug introduced in the last check-in..

This commit is contained in:
Julian Storer 2009-10-12 14:39:43 +01:00
parent 1acee444d1
commit 0280c57ff0
19 changed files with 157 additions and 143 deletions

View file

@ -11,7 +11,7 @@
#include "MainComponent.h"
//==============================================================================
/**
/**
This is the top-level window that we'll pop up. Inside it, we'll create and
show a component from the MainComponent.cpp file (you can open this file using
the Jucer to edit it).
@ -20,13 +20,13 @@ class HelloWorldWindow : public DocumentWindow
{
public:
//==============================================================================
HelloWorldWindow()
HelloWorldWindow()
: DocumentWindow (T("JUCE Hello World!"),
Colours::lightgrey,
Colours::lightgrey,
DocumentWindow::allButtons,
true)
{
// Create an instance of our main content component, and add it
// Create an instance of our main content component, and add it
// to our window.
MainComponent* const contentComponent = new MainComponent();
@ -46,9 +46,9 @@ public:
//==============================================================================
void closeButtonPressed()
{
// When the user presses the close button, we'll tell the app to quit. This
// When the user presses the close button, we'll tell the app to quit. This
// window will be deleted by our HelloWorldApplication::shutdown() method
//
//
JUCEApplication::quit();
}
};