diff options
author | Max Kellermann <max@duempel.org> | 2012-08-02 18:20:43 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-08-02 19:12:27 +0200 |
commit | af1c497759dd9289e2eadfe4e33ee6164ad7cd9a (patch) | |
tree | 41db26d54faf1cbc0f212cff6c4deaed47ad5449 /src/DatabasePlugin.hxx | |
parent | 8e331cfc65b6817a147dfaac4d9c4d01414782ac (diff) | |
download | mpd-af1c497759dd9289e2eadfe4e33ee6164ad7cd9a.tar.gz mpd-af1c497759dd9289e2eadfe4e33ee6164ad7cd9a.tar.xz mpd-af1c497759dd9289e2eadfe4e33ee6164ad7cd9a.zip |
DatabasePlugin: make Visit() const
Diffstat (limited to '')
-rw-r--r-- | src/DatabasePlugin.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DatabasePlugin.hxx b/src/DatabasePlugin.hxx index 71ad88ac5..7ad0a8ee1 100644 --- a/src/DatabasePlugin.hxx +++ b/src/DatabasePlugin.hxx @@ -59,7 +59,7 @@ public: * directory (UTF-8) */ virtual struct song *GetSong(const char *uri_utf8, - GError **error_r) = 0; + GError **error_r) const = 0; /** * Visit the selected entities. @@ -68,7 +68,7 @@ public: VisitDirectory visit_directory, VisitSong visit_song, VisitPlaylist visit_playlist, - GError **error_r) = 0; + GError **error_r) const = 0; }; struct DatabasePlugin { |