mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-03 15:45:46 +08:00
Use override for destructors
This commit is contained in:
@@ -75,7 +75,7 @@ namespace BlackSound
|
||||
CSoundGenerator(const QList<Tone> &tones, BlackMisc::Audio::CNotificationSounds::PlayMode mode, QObject *parent = nullptr);
|
||||
|
||||
//! Destructor
|
||||
virtual ~CSoundGenerator();
|
||||
virtual ~CSoundGenerator() override;
|
||||
|
||||
//! Set volume
|
||||
//! \param volume 0..100
|
||||
|
||||
@@ -38,7 +38,7 @@ namespace BlackSound
|
||||
CThreadedTonePairPlayer(QObject *owner, const QString &name, const QAudioDeviceInfo &device = QAudioDeviceInfo::defaultOutputDevice());
|
||||
|
||||
//! Destructor
|
||||
virtual ~CThreadedTonePairPlayer();
|
||||
virtual ~CThreadedTonePairPlayer() override;
|
||||
|
||||
public slots:
|
||||
//! Play the list of tones.
|
||||
|
||||
Reference in New Issue
Block a user