aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlaylistPrint.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-08-10 18:02:44 +0200
committerMax Kellermann <max@duempel.org>2013-09-04 18:14:22 +0200
commit29030b54c98b0aee65fbc10ebf7ba36bed98c02c (patch)
tree79766830b55ebca38ddbce84d8d548227eedb69e /src/PlaylistPrint.cxx
parentc9fcc7f14860777458153eb2d13c773ccfa1daa2 (diff)
downloadmpd-29030b54c98b0aee65fbc10ebf7ba36bed98c02c.tar.gz
mpd-29030b54c98b0aee65fbc10ebf7ba36bed98c02c.tar.xz
mpd-29030b54c98b0aee65fbc10ebf7ba36bed98c02c.zip
util/Error: new error passing library
Replaces GLib's GError.
Diffstat (limited to 'src/PlaylistPrint.cxx')
-rw-r--r--src/PlaylistPrint.cxx14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/PlaylistPrint.cxx b/src/PlaylistPrint.cxx
index 6eb6bf76e..99f882f91 100644
--- a/src/PlaylistPrint.cxx
+++ b/src/PlaylistPrint.cxx
@@ -32,6 +32,7 @@
#include "Client.hxx"
#include "InputLegacy.hxx"
#include "Song.hxx"
+#include "util/Error.hxx"
void
playlist_print_uris(Client *client, const struct playlist *playlist)
@@ -112,11 +113,11 @@ playlist_print_changes_position(Client *client,
static bool
PrintSongDetails(Client *client, const char *uri_utf8)
{
- const Database *db = GetDatabase(nullptr);
+ const Database *db = GetDatabase(IgnoreError());
if (db == nullptr)
return false;
- Song *song = db->GetSong(uri_utf8, nullptr);
+ Song *song = db->GetSong(uri_utf8, IgnoreError());
if (song == nullptr)
return false;
@@ -127,14 +128,11 @@ PrintSongDetails(Client *client, const char *uri_utf8)
bool
spl_print(Client *client, const char *name_utf8, bool detail,
- GError **error_r)
+ Error &error)
{
- GError *error = NULL;
- PlaylistFileContents contents = LoadPlaylistFile(name_utf8, &error);
- if (contents.empty() && error != nullptr) {
- g_propagate_error(error_r, error);
+ PlaylistFileContents contents = LoadPlaylistFile(name_utf8, error);
+ if (contents.empty() && error.IsDefined())
return false;
- }
for (const auto &uri_utf8 : contents) {
if (!detail || !PrintSongDetails(client, uri_utf8.c_str()))