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:
parent
22ad29baba
commit
bc90a41386
4 changed files with 14 additions and 2 deletions
|
|
@ -73,6 +73,9 @@ struct ReportingThread;
|
|||
struct ReportingThreadContainer : public ChangeListener,
|
||||
public DeletedAtShutdown
|
||||
{
|
||||
ReportingThreadContainer() {}
|
||||
~ReportingThreadContainer() { clearSingletonInstance(); }
|
||||
|
||||
void sendReport (String, String&, StringPairArray&);
|
||||
void changeListenerCallback (ChangeBroadcaster*) override;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue