diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2012-09-04 22:55:01 +0200 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2012-09-04 22:56:24 +0200 |
commit | a351d07effba8e51b9393305e9decbbc91168871 (patch) | |
tree | efebddd918fa8453a43820204b28f04c2b2dc6c4 /src/mpdpp.cpp | |
parent | ef5509358660b36b17b4e53cad389968b535b6f2 (diff) |
actions: get deleting/cropping/clearing playlists right
Diffstat (limited to 'src/mpdpp.cpp')
-rw-r--r-- | src/mpdpp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mpdpp.cpp b/src/mpdpp.cpp index 3157e4bc..2088564b 100644 --- a/src/mpdpp.cpp +++ b/src/mpdpp.cpp @@ -537,7 +537,7 @@ void MPD::Connection::Shuffle() } } -bool MPD::Connection::ClearPlaylist() +bool MPD::Connection::ClearMainPlaylist() { if (!itsConnection) return false; @@ -997,7 +997,7 @@ bool MPD::Connection::DeleteID(unsigned id) return result; } -bool MPD::Connection::Delete(const std::string &playlist, unsigned pos) +bool MPD::Connection::PlaylistDelete(const std::string &playlist, unsigned pos) { if (!itsConnection) return false; |