From 0bc3388d2b93232da48c70589e8ed532ddd911b6 Mon Sep 17 00:00:00 2001 From: Timur Doumler Date: Mon, 10 Aug 2015 15:23:27 +0100 Subject: [PATCH] Fixed typo in Doxygen documentation of ThreadWithProgressWindow. --- .../windows/juce_ThreadWithProgressWindow.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/juce_gui_basics/windows/juce_ThreadWithProgressWindow.h b/modules/juce_gui_basics/windows/juce_ThreadWithProgressWindow.h index fe24c3120b..9ced44771a 100644 --- a/modules/juce_gui_basics/windows/juce_ThreadWithProgressWindow.h +++ b/modules/juce_gui_basics/windows/juce_ThreadWithProgressWindow.h @@ -119,8 +119,8 @@ public: Before returning, the dialog box will be hidden. - @param threadPriority the priority to use when starting the thread - see - Thread::startThread() for values + @param priority the priority to use when starting the thread - see + Thread::startThread() for values @returns true if the thread finished normally; false if the user pressed cancel */ bool runThread (int priority = 5); @@ -132,8 +132,8 @@ public: the thread finishes normally, or the cancel button is pressed, the window will be hidden and the threadComplete() method will be called. - @param threadPriority the priority to use when starting the thread - see - Thread::startThread() for values + @param priority the priority to use when starting the thread - see + Thread::startThread() for values */ void launchThread (int priority = 5);