1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-29 02:40:05 +00:00

Added Jucer support for the new Visual Studio 2010 projects.

This commit is contained in:
Julian Storer 2010-06-11 21:47:20 +01:00
parent ffd93c0343
commit 911b27dcbd
47 changed files with 4927 additions and 449 deletions

View file

@ -160,7 +160,7 @@ namespace XmlOutputFunctions
|| (character >= '0' && character <= '9'))
return true;
const char* t = " .,;:-()_+=?!'#@[]/\\*%~{}";
const char* t = " .,;:-()_+=?!'#@[]/\\*%~{}$|";
do
{
@ -189,7 +189,7 @@ namespace XmlOutputFunctions
static bool isLegalXmlChar (const uint32 c) throw()
{
static const unsigned char legalChars[] = { 0, 0, 0, 0, 171, 255, 255, 175, 255, 255, 255, 191, 254, 255, 255, 111 };
static const unsigned char legalChars[] = { 0, 0, 0, 0, 187, 255, 255, 175, 255, 255, 255, 191, 254, 255, 255, 127 };
return c < sizeof (legalChars) * 8
&& (legalChars [c >> 3] & (1 << (c & 7))) != 0;