diff --git a/extras/Projucer/Source/Project/jucer_ProjectContentComponent.cpp b/extras/Projucer/Source/Project/jucer_ProjectContentComponent.cpp index a7e3dc368f..cfb3a2fbe5 100644 --- a/extras/Projucer/Source/Project/jucer_ProjectContentComponent.cpp +++ b/extras/Projucer/Source/Project/jucer_ProjectContentComponent.cpp @@ -563,8 +563,8 @@ Component* ProjectContentComponent::createBuildTab (CompileEngineChildProcess* c return new EnableBuildComp(); } -Component* ProjectContentComponent::createDisabledBuildTabSubscribe(String textPrefix, - bool loggedIn, bool dllPresent) +Component* ProjectContentComponent::createDisabledBuildTabSubscribe (String textPrefix, + bool loggedIn, bool dllPresent) { bool showSubscribeButton = true; bool showSignInButton = dllPresent && ! loggedIn; diff --git a/modules/juce_core/threads/juce_ThreadPool.h b/modules/juce_core/threads/juce_ThreadPool.h index 753ab1722c..edfffa0c81 100644 --- a/modules/juce_core/threads/juce_ThreadPool.h +++ b/modules/juce_core/threads/juce_ThreadPool.h @@ -156,7 +156,7 @@ public: @param numberOfThreads the number of threads to run. These will be started immediately, and will run until the pool is deleted. @param threadStackSize the size of the stack of each thread. If this value - is zero then the default stack size of the OS will + is zero then the default stack size of the OS will be used. */ ThreadPool (int numberOfThreads, size_t threadStackSize = 0);