mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-04 03:40:07 +00:00
Minor string clean-ups. Made key-shortcut indicators in popup menus use icons for shift/command/option on the mac.
This commit is contained in:
parent
04351861ae
commit
06d436a3ab
34 changed files with 99 additions and 92 deletions
|
|
@ -327,8 +327,7 @@ void findCDDevices (Array<CDDeviceDescription>& list)
|
|||
|
||||
if (h != INVALID_HANDLE_VALUE)
|
||||
{
|
||||
char buffer[100];
|
||||
zeromem (buffer, sizeof (buffer));
|
||||
char buffer[100] = { 0 };
|
||||
|
||||
SCSI_PASS_THROUGH_DIRECT_WITH_BUFFER p;
|
||||
zerostruct (p);
|
||||
|
|
@ -1688,7 +1687,7 @@ bool AudioCDBurner::addAudioTrack (AudioSource* audioSource, int numSamples)
|
|||
source->getNextAudioBlock (info);
|
||||
}
|
||||
|
||||
zeromem (buffer, bytesPerBlock);
|
||||
buffer.clear (bytesPerBlock);
|
||||
|
||||
typedef AudioData::Pointer <AudioData::Int16, AudioData::LittleEndian,
|
||||
AudioData::Interleaved, AudioData::NonConst> CDSampleFormat;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue