Code review changes

* String handling
* Initialize member with `nullptr`
* Use `constexpr`
* Remove `inline`
* Fix Whitespace
This commit is contained in:
Michael Gregorius
2024-06-15 08:52:35 +02:00
parent 3a3c21333a
commit c1e5de5b3b
5 changed files with 12 additions and 12 deletions

View File

@@ -357,7 +357,7 @@ private:
AudioDevice * tryAudioDevices();
MidiClient * tryMidiClients();
inline const AudioDevice* audioDev() const
const AudioDevice* audioDev() const
{
return m_audioDev;
}

View File

@@ -66,7 +66,7 @@ public:
void saveSettings() override;
private:
QComboBox* m_playbackDeviceComboBox;
QComboBox* m_playbackDeviceComboBox = nullptr;
QComboBox* m_inputDeviceComboBox = nullptr;
static QString s_systemDefaultDevice;