Browse Source

Fixed typo in Doxygen documentation of ThreadWithProgressWindow.

tags/2021-05-28
Timur Doumler 10 years ago
parent
commit
0bc3388d2b
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      modules/juce_gui_basics/windows/juce_ThreadWithProgressWindow.h

+ 4
- 4
modules/juce_gui_basics/windows/juce_ThreadWithProgressWindow.h View File

@@ -119,8 +119,8 @@ public:
Before returning, the dialog box will be hidden. 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 @returns true if the thread finished normally; false if the user pressed cancel
*/ */
bool runThread (int priority = 5); bool runThread (int priority = 5);
@@ -132,8 +132,8 @@ public:
the thread finishes normally, or the cancel button is pressed, the window will be the thread finishes normally, or the cancel button is pressed, the window will be
hidden and the threadComplete() method will be called. 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); void launchThread (int priority = 5);


Loading…
Cancel
Save