From 46dc76f993cde227b89569219f1ab7d2238acb20 Mon Sep 17 00:00:00 2001 From: jules Date: Mon, 4 Apr 2016 09:35:34 +0100 Subject: [PATCH] Improved a comment --- modules/juce_events/timers/juce_Timer.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/juce_events/timers/juce_Timer.h b/modules/juce_events/timers/juce_Timer.h index a6670e3fc9..7a8b13f4f1 100644 --- a/modules/juce_events/timers/juce_Timer.h +++ b/modules/juce_events/timers/juce_Timer.h @@ -97,11 +97,11 @@ public: /** Stops the timer. - No more callbacks will be made after this method returns. + No more timer callbacks will be triggered after this method returns. - If this is called from a different thread, any callbacks that may - be currently executing may be allowed to finish before the method - returns. + Note that if you call this from a background thread at the same time as the + message-thread is already in mid-callback, then it won't wait for the current + callback to finish, but it will cancel any future callbacks. */ void stopTimer() noexcept;