diff --git a/src/devices/cddadevice.cpp b/src/devices/cddadevice.cpp index baf452e03..4bc08cab2 100644 --- a/src/devices/cddadevice.cpp +++ b/src/devices/cddadevice.cpp @@ -53,8 +53,6 @@ CddaDevice::~CddaDevice() { void CddaDevice::Init() { LoadSongs(); } -void CddaDevice::Refresh() {} - CddaSongLoader* CddaDevice::loader() { return &cdda_song_loader_; } CdIo_t* CddaDevice::raw_cdio() { return cdio_; } diff --git a/src/devices/cddadevice.h b/src/devices/cddadevice.h index b0da94fd1..ad809a0d0 100644 --- a/src/devices/cddadevice.h +++ b/src/devices/cddadevice.h @@ -38,8 +38,7 @@ class CddaDevice : public ConnectedDevice { bool watch_for_disc_changes = true); ~CddaDevice(); - void Init(); - void Refresh(); + void Init() override; bool CopyToStorage(const MusicStorage::CopyJob&) { return false; } bool DeleteFromStorage(const MusicStorage::DeleteJob&) { return false; } CddaSongLoader* loader();