mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
This commit is contained in:
parent
1c431212eb
commit
cf18595a28
2 changed files with 177 additions and 176 deletions
|
|
@ -19,6 +19,7 @@ Changelist for version 1.46
|
||||||
- updated to include the latest version of Flac (1.2.1)
|
- updated to include the latest version of Flac (1.2.1)
|
||||||
- added a parameter to DragAndDropTarget::isInterestedInDragSource(). This ma
|
- added a parameter to DragAndDropTarget::isInterestedInDragSource(). This ma
|
||||||
- changed the parameters to AudioIODeviceCallback::audioDeviceAboutToStart(), so that it now just supplies a pointer to the device. If you need to, you can still find out the sample rate and block size by asking the device for them.
|
- changed the parameters to AudioIODeviceCallback::audioDeviceAboutToStart(), so that it now just supplies a pointer to the device. If you need to, you can still find out the sample rate and block size by asking the device for them.
|
||||||
|
- changes to the URL class to allow file uploading
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
Changelist for version 1.45
|
Changelist for version 1.45
|
||||||
|
|
|
||||||
|
|
@ -132,7 +132,7 @@ private:
|
||||||
<< T("\nMemory size: ") << SystemStats::getMemorySizeInMegabytes() << T("MB\n");
|
<< T("\nMemory size: ") << SystemStats::getMemorySizeInMegabytes() << T("MB\n");
|
||||||
|
|
||||||
int64 macAddresses[8];
|
int64 macAddresses[8];
|
||||||
const int numAddresses = SystemStats::getMACAddresses (macAddresses, 8);
|
const int numAddresses = SystemStats::getMACAddresses (macAddresses, 8, false);
|
||||||
|
|
||||||
for (int i = 0; i < numAddresses; ++i)
|
for (int i = 0; i < numAddresses; ++i)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue