diff options
author | Max Kellermann <max@duempel.org> | 2008-11-07 16:17:21 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-07 16:17:21 +0100 |
commit | 3eca95ac1cb786d1aef59fd141d75661903c039a (patch) | |
tree | f548c5140c6642aa26ad0cea2c59393dd458b1a4 /src/screen_artist.c | |
parent | c238364f6833320fee4256226af650347d5a751b (diff) | |
download | mpd-3eca95ac1cb786d1aef59fd141d75661903c039a.tar.gz mpd-3eca95ac1cb786d1aef59fd141d75661903c039a.tar.xz mpd-3eca95ac1cb786d1aef59fd141d75661903c039a.zip |
mpdclient: removed _utf8 suffix from function names
All functions must receive UTF-8 file names. Delete all which still
work with locale strings, and remove the _utf8 suffix from the others.
Diffstat (limited to 'src/screen_artist.c')
-rw-r--r-- | src/screen_artist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screen_artist.c b/src/screen_artist.c index 35db91776..c66ae53f9 100644 --- a/src/screen_artist.c +++ b/src/screen_artist.c @@ -179,7 +179,7 @@ load_artist_list(struct mpdclient *c) assert(album_list == NULL); assert(browser.filelist == NULL); - list = mpdclient_get_artists_utf8(c); + list = mpdclient_get_artists(c); /* sort list */ list = g_list_sort(list, compare_utf8); @@ -197,7 +197,7 @@ load_album_list(struct mpdclient *c) assert(album_list == NULL); assert(browser.filelist == NULL); - list = mpdclient_get_albums_utf8(c, artist); + list = mpdclient_get_albums(c, artist); /* sort list */ list = g_list_sort(list, compare_utf8); |