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:
parent
e6a5f1501f
commit
b9443c8ba3
88 changed files with 862 additions and 688 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue