Use override for destructors

This commit is contained in:
Roland Winklmeier
2018-08-24 15:23:49 +02:00
parent 9b3b645c12
commit a60ee4a7dd
54 changed files with 54 additions and 54 deletions

View File

@@ -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

View File

@@ -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.