Skip to content
Snippets Groups Projects
Commit 62bda9c4 authored by Benjamin Arnaud's avatar Benjamin Arnaud
Browse files

playlist_controller: Add FILE_SIZE and FILE_MODIFIED to SortKey

parent 4a4cd955
No related merge requests found
......@@ -62,6 +62,8 @@ public:
SORT_KEY_DISC_NUMBER = VLC_PLAYLIST_SORT_KEY_DISC_NUMBER,
SORT_KEY_URL = VLC_PLAYLIST_SORT_KEY_URL,
SORT_KEY_RATING = VLC_PLAYLIST_SORT_KEY_RATING,
SORT_KEY_FILE_SIZE = VLC_PLAYLIST_SORT_KEY_FILE_SIZE,
SORT_KEY_FILE_MODIFIED = VLC_PLAYLIST_SORT_KEY_FILE_MODIFIED,
SORT_KEY_NONE
};
Q_ENUM(SortKey)
......
......@@ -88,6 +88,8 @@ private:
filler(PlaylistControllerModel::SORT_KEY_DISC_NUMBER, qtr( "Disc Number"));
filler(PlaylistControllerModel::SORT_KEY_URL, qtr("URL"));
filler(PlaylistControllerModel::SORT_KEY_RATING, qtr("Rating"));
filler(PlaylistControllerModel::SORT_KEY_FILE_SIZE, qtr("File size"));
filler(PlaylistControllerModel::SORT_KEY_FILE_MODIFIED, qtr("File modified"));
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment