diff options
author | Max Kellermann <max@duempel.org> | 2008-09-25 19:19:37 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-25 19:19:37 +0200 |
commit | 84f5a0e883f96adf58c8fd182650a1372e367563 (patch) | |
tree | ed84df0fdc88364f01e4fc865b11dfc1c652086c /src/mpdclient.c | |
parent | 434615a48f315a0655891149efa42dc6b919e722 (diff) | |
download | mpd-84f5a0e883f96adf58c8fd182650a1372e367563.tar.gz mpd-84f5a0e883f96adf58c8fd182650a1372e367563.tar.xz mpd-84f5a0e883f96adf58c8fd182650a1372e367563.zip |
filelist: removed attribute "updated"
Since all screen updating is now on demand, we don't need this flag
anymore.
Diffstat (limited to '')
-rw-r--r-- | src/mpdclient.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mpdclient.c b/src/mpdclient.c index caa9fe3a9..5098226d4 100644 --- a/src/mpdclient.c +++ b/src/mpdclient.c @@ -782,7 +782,6 @@ mpdclient_filelist_get(mpdclient_t *c, const gchar *path) mpdclient_finish_command(c); g_free(path_utf8); - filelist->updated = TRUE; // If there are only directory entities in the filelist, we sort it if (has_dirs_only) { @@ -817,7 +816,6 @@ mpdclient_filelist_search_utf8(mpdclient_t *c, return NULL; } - filelist->updated = TRUE; return filelist; } |