diff options
author | Max Kellermann <max@duempel.org> | 2016-03-10 23:16:35 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2016-03-10 23:16:35 +0100 |
commit | f254831aa6251af2aa9b6052953f59439035b939 (patch) | |
tree | 6b63256f9c66239f4ae945f8e9ab3e91a5ba0563 /src/Partition.hxx | |
parent | bd40c8649c036016c97e8e6ae053cdf52cdad1fb (diff) |
Instance: remove redundant "virtual" keywords
Diffstat (limited to 'src/Partition.hxx')
-rw-r--r-- | src/Partition.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Partition.hxx b/src/Partition.hxx index 89c761b60..666adfde9 100644 --- a/src/Partition.hxx +++ b/src/Partition.hxx @@ -217,11 +217,11 @@ private: void OnQueueSongStarted() override; /* virtual methods from class PlayerListener */ - virtual void OnPlayerSync() override; - virtual void OnPlayerTagModified() override; + void OnPlayerSync() override; + void OnPlayerTagModified() override; /* virtual methods from class MixerListener */ - virtual void OnMixerVolumeChanged(Mixer &mixer, int volume) override; + void OnMixerVolumeChanged(Mixer &mixer, int volume) override; /* callback for #global_events */ void OnGlobalEvent(unsigned mask); |