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

Demos: Provide a default program name

This prevents test failures in the Steinberg VST3 validator.
This commit is contained in:
reuk 2021-06-15 17:44:16 +01:00
parent 72738ccc64
commit 3f9e5b4ea0
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11
11 changed files with 11 additions and 11 deletions

View file

@ -205,7 +205,7 @@ public:
int getNumPrograms() override { return 1; }
int getCurrentProgram() override { return 0; }
void setCurrentProgram (int) override {}
const String getProgramName (int) override { return {}; }
const String getProgramName (int) override { return "None"; }
void changeProgramName (int, const String&) override {}