1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

AudioDeviceSelectorComponent: Make timerCallback declaration private

This commit is contained in:
reuk 2021-08-04 11:02:18 +01:00
parent d51354d704
commit 61e5f983d9
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11

View file

@ -89,11 +89,10 @@ public:
//============================================================================== //==============================================================================
/** @internal */ /** @internal */
void resized() override; void resized() override;
/** @internal */
void timerCallback() override;
private: private:
//============================================================================== //==============================================================================
void timerCallback() override;
void handleBluetoothButton(); void handleBluetoothButton();
void updateDeviceType(); void updateDeviceType();
void updateMidiOutput(); void updateMidiOutput();
@ -104,7 +103,7 @@ private:
std::unique_ptr<Label> deviceTypeDropDownLabel; std::unique_ptr<Label> deviceTypeDropDownLabel;
std::unique_ptr<Component> audioDeviceSettingsComp; std::unique_ptr<Component> audioDeviceSettingsComp;
String audioDeviceSettingsCompType; String audioDeviceSettingsCompType;
int itemHeight; int itemHeight = 0;
const int minOutputChannels, maxOutputChannels, minInputChannels, maxInputChannels; const int minOutputChannels, maxOutputChannels, minInputChannels, maxInputChannels;
const bool showChannelsAsStereoPairs; const bool showChannelsAsStereoPairs;
const bool hideAdvancedOptionsWithButton; const bool hideAdvancedOptionsWithButton;