From f5ae1ce00b85699291a7cdf9782574e70a8c28f5 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 19 Jan 2014 10:51:34 +0100 Subject: LightSong: new class to be used by DatabasePlugin callbacks Detach the Song class completely from the public API, only to be used by SimpleDatabase and the update thread. --- src/DatabaseSong.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/DatabaseSong.cxx') diff --git a/src/DatabaseSong.cxx b/src/DatabaseSong.cxx index a8f2188cc..592d38b85 100644 --- a/src/DatabaseSong.cxx +++ b/src/DatabaseSong.cxx @@ -31,7 +31,7 @@ DatabaseDetachSong(const char *uri, Error &error) if (db == nullptr) return nullptr; - Song *tmp = db->GetSong(uri, error); + const LightSong *tmp = db->GetSong(uri, error); if (tmp == nullptr) return nullptr; -- cgit v1.2.3