diff options
author | Max Kellermann <max@duempel.org> | 2013-08-10 18:02:44 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-09-04 18:14:22 +0200 |
commit | 29030b54c98b0aee65fbc10ebf7ba36bed98c02c (patch) | |
tree | 79766830b55ebca38ddbce84d8d548227eedb69e /src/DatabasePrint.hxx | |
parent | c9fcc7f14860777458153eb2d13c773ccfa1daa2 (diff) | |
download | mpd-29030b54c98b0aee65fbc10ebf7ba36bed98c02c.tar.gz mpd-29030b54c98b0aee65fbc10ebf7ba36bed98c02c.tar.xz mpd-29030b54c98b0aee65fbc10ebf7ba36bed98c02c.zip |
util/Error: new error passing library
Replaces GLib's GError.
Diffstat (limited to 'src/DatabasePrint.hxx')
-rw-r--r-- | src/DatabasePrint.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/DatabasePrint.hxx b/src/DatabasePrint.hxx index 68551b63c..042d0458e 100644 --- a/src/DatabasePrint.hxx +++ b/src/DatabasePrint.hxx @@ -21,37 +21,37 @@ #define MPD_DB_PRINT_H #include "gcc.h" -#include "gerror.h" class SongFilter; struct DatabaseSelection; struct db_visitor; class Client; +class Error; gcc_nonnull(1) bool db_selection_print(Client *client, const DatabaseSelection &selection, - bool full, GError **error_r); + bool full, Error &error); gcc_nonnull(1,2) bool -printAllIn(Client *client, const char *uri_utf8, GError **error_r); +printAllIn(Client *client, const char *uri_utf8, Error &error); gcc_nonnull(1,2) bool printInfoForAllIn(Client *client, const char *uri_utf8, - GError **error_r); + Error &error); gcc_nonnull(1,2) bool searchStatsForSongsIn(Client *client, const char *name, const SongFilter *filter, - GError **error_r); + Error &error); gcc_nonnull(1) bool listAllUniqueTags(Client *client, int type, const SongFilter *filter, - GError **error_r); + Error &error); #endif |