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

Linux windowing: Display utf-8 native window titles correctly

This commit is contained in:
reuk 2021-08-17 12:21:55 +01:00
parent 8cc0d12fb3
commit f989182f32
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11
4 changed files with 12 additions and 3 deletions

View file

@ -67,7 +67,7 @@ public:
appProperties.setStorageParameters (options);
}
const String getApplicationName() override { return JucePlugin_Name; }
const String getApplicationName() override { return CharPointer_UTF8 (JucePlugin_Name); }
const String getApplicationVersion() override { return JucePlugin_VersionString; }
bool moreThanOneInstanceAllowed() override { return true; }
void anotherInstanceStarted (const String&) override {}