1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-06 04:00:08 +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:
Julian Storer 2011-02-22 15:33:30 +00:00
parent f471f0a72d
commit 533e7ba795
46 changed files with 993 additions and 706 deletions

View file

@ -125,7 +125,7 @@ void PlatformUtilities::freeDynamicLibrary (void* handle)
void* PlatformUtilities::getProcedureEntryPoint (void* libraryHandle, const String& procedureName)
{
return dlsym (libraryHandle, procedureName.toCString());
return dlsym (libraryHandle, procedureName.toUTF8());
}
#endif