Rename requestContentsUpdate to requestContentUpdate

This commit is contained in:
Andrzej Rybczak
2017-03-12 13:19:21 +01:00
parent b0121227e9
commit 809b1d5b59
3 changed files with 3 additions and 3 deletions

View File

@@ -511,7 +511,7 @@ void PlaylistEditor::locateSong(const MPD::Song &s)
Playlists.highlight(it - Playlists.beginV());
Playlists.refresh();
requestContentsUpdate();
requestContentUpdate();
update();
Content.highlight(*song_index);
nextColumn();

View File

@@ -76,7 +76,7 @@ struct PlaylistEditor: Screen<NC::Window *>, Filterable, HasColumns, HasSongs, S
void updateTimer();
void requestPlaylistsUpdate() { m_playlists_update_requested = true; }
void requestContentsUpdate() { m_content_update_requested = true; }
void requestContentUpdate() { m_content_update_requested = true; }
void locatePlaylist(const MPD::Playlist &playlist);
void locateSong(const MPD::Song &s);