diff options
Diffstat (limited to 'src/qmmpui')
| -rw-r--r-- | src/qmmpui/playlistmodel.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/qmmpui/playlistmodel.h b/src/qmmpui/playlistmodel.h index f5fc6e9c6..1178a433b 100644 --- a/src/qmmpui/playlistmodel.h +++ b/src/qmmpui/playlistmodel.h @@ -461,14 +461,20 @@ public slots: */ void removeUnselected(); /*! - * Removes items with \b i index. + * Removes track with \b i index. */ void removeTrack(int i); /*! - * Removes item \b item from playlist + * Removes track \b track from playlist. */ void removeTrack(PlayListItem *track); + /*! + * Removes tracks \b items from playlist. + */ void removeTracks(const QList<PlayListItem *> &items); + /*! + * Removes tracks \b tracks from playlist. + */ void removeTracks(const QList<PlayListTrack *> &tracks); /*! * Inverts selection (selects unselected items and unselects selected items) |
