mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed a typo in juce_Initialisation.h
This commit is contained in:
parent
ea23ddd69e
commit
fa2a531365
1 changed files with 3 additions and 3 deletions
|
|
@ -24,7 +24,7 @@ namespace juce
|
|||
{
|
||||
|
||||
//==============================================================================
|
||||
/** Initialises Juce's GUI classes.
|
||||
/** Initialises JUCE's GUI classes.
|
||||
|
||||
If you're embedding JUCE into an application that uses its own event-loop rather
|
||||
than using the START_JUCE_APPLICATION macro, call this function before making any
|
||||
|
|
@ -37,7 +37,7 @@ namespace juce
|
|||
*/
|
||||
JUCE_API void JUCE_CALLTYPE initialiseJuce_GUI();
|
||||
|
||||
/** Clears up any static data being used by Juce's GUI classes.
|
||||
/** Clears up any static data being used by JUCE's GUI classes.
|
||||
|
||||
If you're embedding JUCE into an application that uses its own event-loop rather
|
||||
than using the START_JUCE_APPLICATION macro, call this function in your shutdown
|
||||
|
|
@ -155,7 +155,7 @@ public:
|
|||
You can instruct JUCE to use a custom iOS app delegate class instaed of JUCE's default
|
||||
app delegate. For JUCE to work you must pass all messages to JUCE's internal app delegate.
|
||||
Below is an example of minimal forwarding custom delegate. Note that you are at your own
|
||||
risk if you decide to use your own delegate an subtle, hard to debug bugs may occur.
|
||||
risk if you decide to use your own delegate and subtle, hard to debug bugs may occur.
|
||||
|
||||
@interface MyCustomDelegate : NSObject <UIApplicationDelegate> { NSObject<UIApplicationDelegate>* juceDelegate; } @end
|
||||
@implementation MyCustomDelegate
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue