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

Versioning: Add the JUCE version number to any internally created threads

This commit is contained in:
Anthony Nicholls 2024-09-13 17:23:57 +01:00
parent 0e608f77fa
commit 6c2d149ef3
25 changed files with 27 additions and 27 deletions

View file

@ -49,7 +49,7 @@ public:
Win32NativeFileChooser (Component* parent, int flags, FilePreviewComponent* previewComp,
const File& startingFile, const String& titleToUse,
const String& filtersToUse)
: Thread ("Native Win32 FileChooser"),
: Thread (SystemStats::getJUCEVersion() + ": Native Win32 FileChooser"),
owner (parent),
title (titleToUse),
filtersString (filtersToUse.replaceCharacter (',', ';')),