Code review changes
* String handling * Initialize member with `nullptr` * Use `constexpr` * Remove `inline` * Fix Whitespace
This commit is contained in:
@@ -357,7 +357,7 @@ private:
|
||||
AudioDevice * tryAudioDevices();
|
||||
MidiClient * tryMidiClients();
|
||||
|
||||
inline const AudioDevice* audioDev() const
|
||||
const AudioDevice* audioDev() const
|
||||
{
|
||||
return m_audioDev;
|
||||
}
|
||||
|
||||
@@ -66,7 +66,7 @@ public:
|
||||
void saveSettings() override;
|
||||
|
||||
private:
|
||||
QComboBox* m_playbackDeviceComboBox;
|
||||
QComboBox* m_playbackDeviceComboBox = nullptr;
|
||||
QComboBox* m_inputDeviceComboBox = nullptr;
|
||||
|
||||
static QString s_systemDefaultDevice;
|
||||
|
||||
Reference in New Issue
Block a user