1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00

Added HTTP header retrieval functionality to the URL class. More drawable and Jucer development.

This commit is contained in:
Julian Storer 2010-05-25 14:31:50 +01:00
parent 4537a6ec01
commit 1b6eb960e3
47 changed files with 1383 additions and 439 deletions

View file

@ -785,11 +785,11 @@ int CharacterFunctions::getHexDigitValue (const juce_wchar digit) throw()
if (d < (unsigned int) 10)
return (int) d;
d += '0' - 'a';
d += (unsigned int) ('0' - 'a');
if (d < (unsigned int) 6)
return (int) d + 10;
d += 'a' - 'A';
d += (unsigned int) ('a' - 'A');
if (d < (unsigned int) 6)
return (int) d + 10;