diff options
author | Max Kellermann <max@duempel.org> | 2014-02-01 00:26:34 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-04 11:22:33 +0100 |
commit | cf6281a5a758e4b93d67f7fd5804a8cff60ddbf9 (patch) | |
tree | 7368011b1ecf5ae6db6dcafb676fddf03ff9d823 /src/db/DatabasePrint.cxx | |
parent | f00710a57e80738c33255eaa1347ab776fbce869 (diff) | |
download | mpd-cf6281a5a758e4b93d67f7fd5804a8cff60ddbf9.tar.gz mpd-cf6281a5a758e4b93d67f7fd5804a8cff60ddbf9.tar.xz mpd-cf6281a5a758e4b93d67f7fd5804a8cff60ddbf9.zip |
Instance: add Database attribute
Move from db/DatabaseGlue.cxx, eliminating global variable.
Diffstat (limited to 'src/db/DatabasePrint.cxx')
-rw-r--r-- | src/db/DatabasePrint.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/db/DatabasePrint.cxx b/src/db/DatabasePrint.cxx index 9ed0b0826..669a804be 100644 --- a/src/db/DatabasePrint.cxx +++ b/src/db/DatabasePrint.cxx @@ -28,7 +28,6 @@ #include "LightSong.hxx" #include "LightDirectory.hxx" #include "PlaylistInfo.hxx" -#include "DatabaseGlue.hxx" #include "DatabasePlugin.hxx" #include <functional> @@ -129,7 +128,7 @@ bool db_selection_print(Client &client, const DatabaseSelection &selection, bool full, Error &error) { - const Database *db = GetDatabase(error); + const Database *db = client.GetDatabase(error); if (db == nullptr) return false; @@ -173,7 +172,7 @@ searchStatsForSongsIn(Client &client, const char *name, const SongFilter *filter, Error &error) { - const Database *db = GetDatabase(error); + const Database *db = client.GetDatabase(error); if (db == nullptr) return false; @@ -229,7 +228,7 @@ listAllUniqueTags(Client &client, int type, const SongFilter *filter, Error &error) { - const Database *db = GetDatabase(error); + const Database *db = client.GetDatabase(error); if (db == nullptr) return false; |