1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

More string tidying-up. Possible fix for win32 mutexes failing under strange circumstances.

This commit is contained in:
Julian Storer 2011-02-23 17:02:58 +00:00
parent ef36a42ee6
commit 04351861ae
18 changed files with 357 additions and 533 deletions

View file

@ -97,7 +97,7 @@ const String::CharPointerType StringPool::getPooledString (const char* const s)
return StringPoolHelpers::getPooledStringFromArray (strings, s);
}
const String::CharPointerType StringPool::getPooledString (const juce_wchar* const s)
const String::CharPointerType StringPool::getPooledString (const wchar_t* const s)
{
if (s == 0 || *s == 0)
return String::empty.getCharPointer();