1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-26 02:14:22 +00:00

Cleaned up some compiler warnings. Jucer development.

This commit is contained in:
Julian Storer 2010-05-04 21:27:45 +01:00
parent e6a5f1501f
commit b9443c8ba3
88 changed files with 862 additions and 688 deletions

View file

@ -1329,9 +1329,9 @@ void Path::loadPathFromStream (InputStream& source)
}
}
void Path::loadPathFromData (const void* const data, const int numberOfBytes)
void Path::loadPathFromData (const void* const pathData, const int numberOfBytes)
{
MemoryInputStream in (data, numberOfBytes, false);
MemoryInputStream in (pathData, numberOfBytes, false);
loadPathFromStream (in);
}