diff options
author | Max Kellermann <max@duempel.org> | 2013-01-07 21:17:01 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-07 21:17:01 +0100 |
commit | 2b8ce83c9b5963706d2729334add71251fa32b79 (patch) | |
tree | 4ed6f5719d4703126b5c1e0bbae0bda269341ec7 /src/Queue.hxx | |
parent | 52638c68f51209dc6c5a966feeadffc5b922f919 (diff) | |
download | mpd-2b8ce83c9b5963706d2729334add71251fa32b79.tar.gz mpd-2b8ce83c9b5963706d2729334add71251fa32b79.tar.xz mpd-2b8ce83c9b5963706d2729334add71251fa32b79.zip |
Queue: move queue_shuffle_order_range() into the class
Diffstat (limited to 'src/Queue.hxx')
-rw-r--r-- | src/Queue.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Queue.hxx b/src/Queue.hxx index f52dd3335..0652c711f 100644 --- a/src/Queue.hxx +++ b/src/Queue.hxx @@ -299,6 +299,12 @@ struct queue { } /** + * Shuffle the order of items in the specified range, ignoring + * their priorities. + */ + void ShuffleOrderRange(unsigned start, unsigned end); + + /** * Shuffle the order of items in the specified range, taking their * priorities into account. */ |