diff options
author | Max Kellermann <max@duempel.org> | 2013-10-28 10:12:21 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-28 10:12:33 +0100 |
commit | 5b5675cc121eff6ba4b89719a523bfbe3993ce2f (patch) | |
tree | 92bd72d3f460d184d5769256270c76db0fb6080b /src/PlaylistState.hxx | |
parent | e699f6781e144d02336856d460a74fbaf988447d (diff) | |
download | mpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.tar.gz mpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.tar.xz mpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.zip |
player_control: rename to PlayerControl
Diffstat (limited to 'src/PlaylistState.hxx')
-rw-r--r-- | src/PlaylistState.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/PlaylistState.hxx b/src/PlaylistState.hxx index 339ac1061..01cc94d03 100644 --- a/src/PlaylistState.hxx +++ b/src/PlaylistState.hxx @@ -28,16 +28,16 @@ #include <stdio.h> struct playlist; -struct player_control; +struct PlayerControl; class TextFile; void playlist_state_save(FILE *fp, const struct playlist &playlist, - player_control &pc); + PlayerControl &pc); bool playlist_state_restore(const char *line, TextFile &file, - struct playlist &playlist, player_control &pc); + struct playlist &playlist, PlayerControl &pc); /** * Generates a hash number for the current state of the playlist and @@ -47,6 +47,6 @@ playlist_state_restore(const char *line, TextFile &file, */ unsigned playlist_state_get_hash(const struct playlist &playlist, - player_control &c); + PlayerControl &c); #endif |