From fa2a5313656e33c61eae666a0c5881b1be8ba61b Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 14 Dec 2017 15:46:42 +0000 Subject: [PATCH] Fixed a typo in juce_Initialisation.h --- modules/juce_events/messages/juce_Initialisation.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/juce_events/messages/juce_Initialisation.h b/modules/juce_events/messages/juce_Initialisation.h index 4de79f7e99..bf576a40f3 100644 --- a/modules/juce_events/messages/juce_Initialisation.h +++ b/modules/juce_events/messages/juce_Initialisation.h @@ -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 { NSObject* juceDelegate; } @end @implementation MyCustomDelegate