Extend article sorting to artist and album artist (#210)

This commit is contained in:
Gavin D. Howard
2019-07-11 08:51:25 -06:00
committed by Jonas Kvinge
parent dcf0d6f72d
commit 3a86a93154
3 changed files with 22 additions and 14 deletions

View File

@@ -190,7 +190,9 @@ class Song {
const QString &album() const;
const QString &album_sortable() const;
const QString &artist() const;
const QString &artist_sortable() const;
const QString &albumartist() const;
const QString &albumartist_sortable() const;
int track() const;
int disc() const;
int year() const;
@@ -237,6 +239,7 @@ class Song {
const QString &effective_album() const;
int effective_originalyear() const;
const QString &effective_albumartist() const;
const QString &effective_albumartist_sortable() const;
bool is_collection_song() const;
bool is_stream() const;