summaryrefslogtreecommitdiff
path: root/src/conv.h
diff options
context:
space:
mode:
authorAndrzej Rybczak <electricityispower@gmail.com>2009-09-22 22:33:46 +0200
committerAndrzej Rybczak <electricityispower@gmail.com>2009-09-22 22:37:33 +0200
commitdec7bd9c0ef5c35216919ff9633d8d9a2d7ca992 (patch)
tree88224565b37da3c7bb367fc361cce323f68f30df /src/conv.h
parentaad9146397440003c246adcbb7e5c299ba26e16f (diff)
make ncmpcpp use external libmpdclient (--without-taglib and --without-iconv)
Diffstat (limited to 'src/conv.h')
-rw-r--r--src/conv.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conv.h b/src/conv.h
index 1c1af989..717f1250 100644
--- a/src/conv.h
+++ b/src/conv.h
@@ -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 &);