mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-17 00:44:19 +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
|
|
@ -110,7 +110,7 @@ int StringPool::size() const throw()
|
|||
return strings.size();
|
||||
}
|
||||
|
||||
const juce_wchar* StringPool::operator[] (const int index) const throw()
|
||||
const String::CharPointerType StringPool::operator[] (const int index) const throw()
|
||||
{
|
||||
return strings [index].getCharPointer();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue