aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlaylistQueue.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-28 10:12:21 +0100
committerMax Kellermann <max@duempel.org>2013-10-28 10:12:33 +0100
commit5b5675cc121eff6ba4b89719a523bfbe3993ce2f (patch)
tree92bd72d3f460d184d5769256270c76db0fb6080b /src/PlaylistQueue.hxx
parente699f6781e144d02336856d460a74fbaf988447d (diff)
downloadmpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.tar.gz
mpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.tar.xz
mpd-5b5675cc121eff6ba4b89719a523bfbe3993ce2f.zip
player_control: rename to PlayerControl
Diffstat (limited to '')
-rw-r--r--src/PlaylistQueue.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PlaylistQueue.hxx b/src/PlaylistQueue.hxx
index 503b6bbb0..fc566ec78 100644
--- a/src/PlaylistQueue.hxx
+++ b/src/PlaylistQueue.hxx
@@ -28,7 +28,7 @@
class SongEnumerator;
struct playlist;
-struct player_control;
+struct PlayerControl;
/**
* Loads the contents of a playlist and append it to the specified
@@ -42,7 +42,7 @@ struct player_control;
PlaylistResult
playlist_load_into_queue(const char *uri, SongEnumerator &e,
unsigned start_index, unsigned end_index,
- playlist &dest, player_control &pc,
+ playlist &dest, PlayerControl &pc,
bool secure);
/**
@@ -52,7 +52,7 @@ playlist_load_into_queue(const char *uri, SongEnumerator &e,
PlaylistResult
playlist_open_into_queue(const char *uri,
unsigned start_index, unsigned end_index,
- playlist &dest, player_control &pc,
+ playlist &dest, PlayerControl &pc,
bool secure);
#endif