1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-08 04:20:09 +00:00

Minor SVG fix. Added manual reset option to WaitableEvent. Made AudioFilterStreamer update channel numbers when the audio device changes.

This commit is contained in:
Julian Storer 2010-04-11 16:06:48 +01:00
parent f198f06e6a
commit ca348c06d7
8 changed files with 53 additions and 26 deletions

View file

@ -79,8 +79,8 @@ void CriticalSection::exit() const throw()
}
//==============================================================================
WaitableEvent::WaitableEvent() throw()
: internal (CreateEvent (0, FALSE, FALSE, 0))
WaitableEvent::WaitableEvent (const bool manualReset) throw()
: internal (CreateEvent (0, manualReset ? TRUE : FALSE, FALSE, 0))
{
}