mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-30 02:50:05 +00:00
Many more String changes, so that finally the String class can store its internal data as either utf8, 16 or 32 - this is controlled by a flag JUCE_STRING_UTF_TYPE. It's currently set to utf-8 by default.
This commit is contained in:
parent
f471f0a72d
commit
533e7ba795
46 changed files with 993 additions and 706 deletions
|
|
@ -128,7 +128,7 @@ namespace
|
|||
: SND_SEQ_OPEN_OUTPUT, 0) == 0)
|
||||
{
|
||||
snd_seq_set_client_name (seqHandle,
|
||||
(deviceNameToOpen + (forInput ? " Input" : " Output")).toCString());
|
||||
(deviceNameToOpen + (forInput ? " Input" : " Output")).toUTF8());
|
||||
|
||||
const int portId
|
||||
= snd_seq_create_simple_port (seqHandle,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue