diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2009-09-22 22:33:46 +0200 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2009-09-22 22:37:33 +0200 |
commit | dec7bd9c0ef5c35216919ff9633d8d9a2d7ca992 (patch) | |
tree | 88224565b37da3c7bb367fc361cce323f68f30df /src/conv.h | |
parent | aad9146397440003c246adcbb7e5c299ba26e16f (diff) |
make ncmpcpp use external libmpdclient (--without-taglib and --without-iconv)
Diffstat (limited to 'src/conv.h')
-rw-r--r-- | src/conv.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -38,16 +38,16 @@ long StrToLong(const std::string &); std::string IntoStr(int); -std::string IntoStr(mpd_TagItems); +std::string IntoStr(mpd_tag_type); std::string IntoStr(NCurses::Color); NCurses::Color IntoColor(const std::string &); -mpd_TagItems IntoTagItem(char); +mpd_tag_type IntoTagItem(char); #ifdef HAVE_TAGLIB_H -MPD::Song::SetFunction IntoSetFunction(mpd_TagItems); +MPD::Song::SetFunction IntoSetFunction(mpd_tag_type); #endif // HAVE_TAGLIB_H void EscapeUnallowedChars(std::string &); |