remove Song::SetPosition

This commit is contained in:
Andrzej Rybczak
2012-08-14 23:55:22 +02:00
parent e729ab0a38
commit d3b48855fd
2 changed files with 0 additions and 6 deletions

View File

@@ -322,11 +322,6 @@ void MPD::Song::SetComment(const std::string &str, unsigned pos)
SetTag(MPD_TAG_COMMENT, pos, str);
}
void MPD::Song::SetPosition(unsigned pos)
{
mpd_song_set_pos(itsSong, pos);
}
void MPD::Song::SetTags(SetFunction f, const std::string &value)
{
unsigned pos = 0;

View File

@@ -81,7 +81,6 @@ namespace MPD
void SetPerformer(const std::string &, unsigned = 0);
void SetDisc(const std::string &, unsigned = 0);
void SetComment(const std::string &, unsigned = 0);
void SetPosition(unsigned);
void SetTags(SetFunction, const std::string &);