1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed a few singletons which had forgotten to call clearSingletonInstance() in their destructors

This commit is contained in:
jules 2017-12-13 09:23:26 +00:00
parent 22ad29baba
commit bc90a41386
4 changed files with 14 additions and 2 deletions

View file

@ -73,6 +73,9 @@ struct ReportingThread;
struct ReportingThreadContainer : public ChangeListener,
public DeletedAtShutdown
{
ReportingThreadContainer() {}
~ReportingThreadContainer() { clearSingletonInstance(); }
void sendReport (String, String&, StringPairArray&);
void changeListenerCallback (ChangeBroadcaster*) override;