diff options
Diffstat (limited to 'src/Queue.hxx')
-rw-r--r-- | src/Queue.hxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Queue.hxx b/src/Queue.hxx index e3a66f3a8..d5b9218a5 100644 --- a/src/Queue.hxx +++ b/src/Queue.hxx @@ -245,6 +245,17 @@ struct queue { * IncrementVersion() after all modifications have been made. * number. */ + void ModifyAtPosition(unsigned position) { + assert(position < length); + + items[position].version = version; + } + + /** + * Marks the specified song as "modified". Call + * IncrementVersion() after all modifications have been made. + * number. + */ void ModifyAtOrder(unsigned order); /** |